컴퓨터 프로그래밍/Redis2 [Redis] 데이터를 DB 에서 조회하는 것과 캐시 에서 조회하는 것의 차이 // 인기 카드 Top3 조회 ( Redis )@Transactional(readOnly = true)public Map getTopViewCardList() { Set> topCardsWithScores = redisTemplate.opsForZSet().reverseRangeWithScores(TODAY_RANKING_KEY, 0, 2); return topCardsWithScores.stream() .collect(Collectors.toMap( tuple -> tuple.getValue().toString(), // title tuple -> tuple.getScore().int.. 2024. 10. 20. [Redis] SpringBoot 에 Redis 초기 세팅 코드 build.gradle// redisimplementation 'org.springframework.boot:spring-boot-starter-data-redis' 의존성 주입RedisConfigpackage com.sparta.springusersetting.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.redis.connection.RedisConnectionFactory;import org.springframework.data.redis.core.RedisTemplate;impo.. 2024. 10. 16. 이전 1 다음