학습내용리더보드 구현 Sorted Set리더보드 최적화Redis Pub/Sub학습정리1. 리더보드 구현 Sorted Set//사용자추가public void addPlayerScore(String player, Double score) { jedis.zadd(LEADERBOARD_KEY, score, player); log.info("Player {} updated wtih score : {}", player, score);}//사용자 조회public void getTopPlayer(Integer topN) { List topPlayers = jedis.zrangeWithScores(LEADERBOARD_KEY, 0, topN - 1); int rank = 1; for (Tuple topPlaye..