Does Redis only allow string representation but not numeric value

前端 未结 2 1813
花落未央
花落未央 2021-02-19 06:26

I am getting mixed answers on my research here.

  • Can someone verify that the Redis Server can only store representation of any numerical values?

  • <
2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-19 07:10

    Double numbers could be stored as string if you're using JSON codecs, but it also could be stored in binary format used by Kryo, CBOR, MsgPack codecs which are supported by Redis based framework for Java - Redisson.

提交回复
热议问题