You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation stores "integer strings" as ByteBuffers. A key is turned into an "integer string" when the INCR, DECR family of commands are used.
SET counter 22
INCRBY counter 20
This is currently slower than necessary, we parse the ByteBuffer's into Integers, do the op, and persist as ByteBuffers again.
The RedisValue enum is prepared for that. It isn't a hard change, but will affect many places.
The text was updated successfully, but these errors were encountered:
The current implementation stores "integer strings" as
ByteBuffer
s. A key is turned into an "integer string" when theINCR
,DECR
family of commands are used.This is currently slower than necessary, we parse the ByteBuffer's into Integers, do the op, and persist as ByteBuffers again.
The
RedisValue
enum is prepared for that. It isn't a hard change, but will affect many places.The text was updated successfully, but these errors were encountered: