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
- oauth2
- 도커
- 소셜로그인
- docker
- Spring
- 스프링
- springdataredis
- yaml-resource-bundle
- 스프링시큐리티
- JIRA
- 국제화
- 백준
- 파이썬
- 데이터베이스
- springsecurityoauth2client
- 토이프로젝트
- 리프레시토큰
- 트랜잭션
- githubactions
- 티스토리챌린지
- 액세스토큰
- 재갱신
- java
- 오블완
- AWS
- springsecurity
- 스프링부트
- CI/CD
- 프로그래머스
- 메시지
Archives
- Today
- Total
목록2024/11/15 (1)
땃쥐네
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/SEde2/btsKJEY3C1w/Kukn052HbYYAjcD4I68G9K/img.webp)
이번 글에서는 이전부터 미뤘던이메일 인증, 리프레시토큰 홀더의 Redis 저장 설정을 해보겠습니다.1. Redis 레디스는 인메모리 데이터베이스의 대표적인 제품으로, 데이터를 메모리에 저장하는 특징이 있습니다.디스크에 데이터를 저장하는 관계형데이터베이스들보다 데이터 접근이 빠르기 때문에 주로 캐시로 많이 사용합니다. 127.0.0.1:6379> set key valueOK127.0.0.1:6379> expire key 10(integer) 1127.0.0.1:6379> ttl key(integer) 5127.0.0.1:6379> ttl key(integer) 3127.0.0.1:6379> ttl key(integer) -2127.0.0.1:6379> get key(nil) 또 레디스는 TTL(Time..
Project
2024. 11. 15. 16:37