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 | 31 |
Tags
- 항해99
- emqx
- java
- @jsonproperty
- JavaScript
- docker
- 카프카
- Kafka
- 생성자 주입
- 시큐리티
- CentOS
- MYSQL
- 스파르타코딩클럽
- 스웨거
- JWT
- AWS
- 프로그래머스
- 웹개발
- 패스트캠퍼스
- EC2
- 스프링의 정석
- visualvm
- Spring
- Spring Security
- 데이터베이스
- 남궁성과 끝까지 간다
- 쇼트유알엘
- DB
- 개인프로젝트
- WEB SOCKET
Archives
- Today
- Total
목록레디스캐시 (1)
Nellie's Blog
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/xg6KX/btsIThQ6tZ7/y8vKSY9Pv4bMGtdi1yrD9k/img.png)
1. 레디스 캐시 안 썼을 때 조회 시간SecuritySupportSvcImpl @Override public List getLoginUserRole(String userId) { return securitySupportDao.getLoginUserRole(userId); } 컨트롤러 @GetMapping("/mapg") public List getLoginUserRole() { final List list = securitySupportSvc.getLoginUserRole("admin"); return list; } 호출을 하면 64초 정도가 나온다. 여러번 호출해봐도 비슷하다. 2. 레디스 캐시 썼을 때 조회 시간SecuritySupportSvcImpl @C..
DB/Database
2024. 7. 31. 16:11