DolphaGo / TIL

TIL & issues
0 stars 1 forks source link

[Redis] @Transactional #120

Open DolphaGo opened 2 years ago

DolphaGo commented 2 years ago

Situation

Redis 조회만 하는 메서드와, DB 조회를 하는 메서드가 하나의 서비스로 묶여있었고, @Transactional(readOnly = true) 로 클래스 레벨에 두었었는데, Redis 조회 메서드만 사용하는데도, getConnection() 에서 간헐적으로 시간이 많이 소요되었다.

해결

Deepdive 는 추후 여유가 생기면 기록하자..