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 |
Tags
- visualvm
- AWS
- emqx
- Spring
- JavaScript
- 웹개발
- 남궁성과 끝까지 간다
- 데이터베이스
- 생성자 주입
- 스웨거
- 항해99
- Kafka
- java
- 개인프로젝트
- 카프카
- CentOS
- 스프링의 정석
- DB
- MYSQL
- 스파르타코딩클럽
- EC2
- Spring Security
- 패스트캠퍼스
- 프로그래머스
- JWT
- 쇼트유알엘
- 시큐리티
- WEB SOCKET
- @jsonproperty
- docker
Archives
- Today
- Total
목록redis cache (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