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
- codedeploy
- rds
- 스터디
- spring
- s3
- 자격증
- MSA
- QueryDSL
- sqs
- ec2
- serverless
- Redis
- bootcamp
- 오블완
- Docker
- goorm x kakao
- CodeCommit
- goorm
- codebuild
- orm
- jpa
- mapping
- 개발자
- 백엔드
- aws
- Spring Boot
- 티스토리챌린지
- CICD
- DynamoDB
- backenddeveloper
Archives
- Today
- Total
목록2024/12/06 (1)
gony-dev 님의 블로그
[Redis] Connection Mode-1
Redis는 통상적으로 4가지의 모드가 존재한다.1. Redis Standalone(default)2. Master/Slave3. Redis Sentinel4. Redis Cluster각각의 모드는 뚜렷한 특징을 띄며, 모드를 조합하여 시스템의 요구사항을 만족시킬 수 있다.1. Redis Standalone우리가 흔히 프로젝트를 할 때 사용하는 모드로, 하나의 redis 서버만을 다룬다.@Beanpublic LettuceConnectionFactory redisConnectionFactory() { RedisStandaloneConfiguration config = new RedisStandaloneConfiguration(); return new LettuceConnectionFactory(..
DBMS
2024. 12. 6. 15:07