소개
게시글
질문&답변
synchronized 쓰지 않는 이유는 해당 서버가 스케일 아웃(분산처리 하기 위해) 경우 동시성을 보장 못 하기 때문이라고 해주셨는데요
Redis에서 명령/요청등을 처리하는 스레드는 한개인것으로 알고있습니다. 읽기 성능 확장을 위한 복제(Replication)와 쓰기 성능 향상을 위한 샤딩(Sharding)을 하더라도명령/요청처리는 마스터의 한 스레드만 담당하는것으로 알고있는데요. 그래서 레디스를 스케일아웃으로 확장하더라도 동시성 보장이 되는것으로 보입니다.내용에 틀린부분이 있다면 댓글 부탁드립니다. --- Reddison Readme Features(https://github.com/redisson/redisson/) Redis Replicated setup (also compatible with AWS ElastiCache and Azure Redis Cache) Redis Cluster setup (also compatible with AWS ElastiCache Cluster, Amazon MemoryDB and Azure Redis Cache) Redis Sentinel setup Redis with Master with Slave only --- https://djlee118.tistory.com/111 https://akasai.tistory.com/23
- 0
- 2
- 650
질문&답변
포스트맨으로 login호출 후 성공했을때 404 에러코드가 응답되는데요.
자문자답입니다. RestAPI Server이기때문에 로그인페이지를 응답할 필요가 없으니 막아야 하는것이었군요. public class AuthenticationFilter extends UsernamePasswordAuthenticationFilter { // ... 생략 ... @Override protected void successfulAuthentication( HttpServletRequest request, HttpServletResponse response, FilterChain chain, Authentication authResult ) throws IOException, ServletException { // super.successfulAuthentication(request, response, chain, authResult); // 주석 또는 삭제 필수 } }
- 9
- 2
- 737
질문&답변
Mulitple In조건 처리 질문있습니다.
방법을 찾지못해서 or쿼리로 작성하기는 했었는데요. 제가 작성한것보다 적어주신것이 저 나은것 같네요.ㅎㅎ 답변 감사합니다!!
- 0
- 2
- 1.4K
질문&답변
쿠버네티스 공식 튜토리얼을 보다가 궁금한점이 생겼는데요.
궁금증이 풀렸습니다 너무 감사합니다 즐거운 주말되셔요!!
- 1
- 2
- 340