-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BSVR-212] AWS ElastiCache Redis 세팅 #145
Conversation
private final RedisProperties redisProperties; | ||
|
||
@Bean | ||
public RedissonClient redissonClient() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
java에서 쓸 수 있는 레디스 클라이언트는 대표적으로 redisson이랑 lettuce가 있어요.
SPOT에서는 redis를 분산락 관리 목적으로 도입했기 때문에, 해당 목적에 초점을 맞추고 아래와 같이 비교했어요.
항목 | Redisson | Lettuce |
---|---|---|
락 획득 방법 | Pub/Sub 구조로 락 획득 | 스핀락 방식으로 락 획득 |
사용성 | Lock Interface 지원 | setnx, setex 등을 이용해 락 직접 구현해야 함 |
성능과 구현 복잡도를 고려하여 Redisson 라이브러리를 최종 선택했습니당
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm! redisson gogo~
📌 개요 (필수)
🔨 작업 사항 (필수)
🌱 연관 내용 (선택)