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());