Using Spring's RedisTemplate with KEEPTTL option (with Lettuce library)
I have a String RedisTemplate to access REDIS. Underneath there is a connection that I get through a LettuceConnectionFactory. I would like to accomplish the equivalent to these REDIS commands with the RedisTemplate instance. set my_key new_value keepttl What I…