Does Redis only allow string representation but not numeric value
I am getting mixed answers on my research here. Can someone verify that the Redis Server can only store representation of any numerical values? For instance, if I use a Java client (Jedis) with a double type in lpush, do I need to convert it to the equivalent of a string type before sending to Redis? Or is there a way to I can send over an actual numeric type like a double? If so, is there any example code on how to accomplish this? Thanks Redis stores everything in string or in its string representation. Even functions like INCR work by first parsing it into INTEGER then performing the