From 0f4b239148624ba9ef1272821c24e6b070eca153 Mon Sep 17 00:00:00 2001 From: ineanto Date: Sat, 7 Jun 2025 12:33:15 +0200 Subject: [PATCH] refactor: weird... --- src/main/java/xyz/ineanto/nicko/storage/redis/RedisCache.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/xyz/ineanto/nicko/storage/redis/RedisCache.java b/src/main/java/xyz/ineanto/nicko/storage/redis/RedisCache.java index 7cdfa35..b40367e 100644 --- a/src/main/java/xyz/ineanto/nicko/storage/redis/RedisCache.java +++ b/src/main/java/xyz/ineanto/nicko/storage/redis/RedisCache.java @@ -56,6 +56,7 @@ public class RedisCache extends Cache { @Override public Optional retrieve(UUID uuid) { try (Jedis jedis = provider.getJedis()) { + // 06/07/25: like, for real. what the f is that comment about...? // 08/29/23: what the fuck was I talking about? // old_todo (Ineanto, 05/20/23): Check if cached before because Jedis returns a bulk reply so this is unsafe final String data = jedis.get("nicko:" + uuid.toString());