Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TDD
- ws
- was
- stateful
- stateless
- greedy
- Bruteforce
- Gunicorn
- Git
- permutations
- utils
- codecov
- pytest
- HTTP 완벽 가이드
- SQL
- stack&que
- algorithm
- combinations
- Programmers
- postreSQL
- Python
- dictionary
- Unit Testing
- Django
- Stack
- ORM
- Q objects
- Query
- AWS
- 백준
Archives
- Today
- Total
목록stateful (1)
해피 코딩!
stateless, stateful - 세션과 토큰 인증방식
요약 stateless는 서버에서 HTTP와 같은 client의 이전 상태를 기록하지 않는 접속 stateful은 서버에서 client의 이전 상태를 기록. REST 개념에서 각각의 요청은 독립적인 stateless 방식이며 이것은 client가 상태정보를 모두 관리할 책임이 있다. stateless는 caching, load balancing, scale out이 장점이지만, 매 요청마다 상태 정보를 전달 받아야 하기 때문에 네트워크 자원을 소모한며 서버는 정보를 처리하기 위한 작업이 필요하다. Stateful stateless HTTP 프로토콜은 요청에 따른 응답을 받으면 연결이 끊어지고 (connectionless) 통신이 종료되면 어떠한 상태도 남지 않는다. (stateless) 따라서 로그인 후..
Network
2020. 12. 16. 17:32