Why do the parameters of lists commands ask for int64
instead of int32
?
#2945
Unanswered
luiz-otavio
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
While I was using
go-redis
as library for connecting to Redis I used to convert most of my integers from 32 bits to 64 bits due to the parameters type of list commands:go-redis/list_commands.go
Lines 26 to 29 in 8b15101
However, I noticed the limits of Redis is mostly based on integers within a range of 32 bits, so why does it need to be 64?
https://redis.io/docs/data-types/lists/#limits
Beta Was this translation helpful? Give feedback.
All reactions