// 인기 카드 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..