79505018

Date: 2025-03-12 22:47:22
Score: 2
Natty:
Report link

Found the root cause.

Redisson was adding extra characters while encoding https://redisson.pro/docs/data-and-services/data-serialization/?utm_source=chatgpt.com

Plain text codec works

config.setCodec(new StringCodec());
        config.useSingleServer()
                .setAddress(redisURL)
                .setConnectionPoolSize(30);
        RedissonClient redisson = Redisson.create(config);
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: siddharthabhi30