-
Hi All, I patched the official Python Redis library to support the It's not very clear to me who is correct in this. As the Redis protocol returns a string but a standard Redis seems to return a long int as a string. This fixes the Python Redis while using Cheers |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Thanks @adulau Redis return the cursor which is |
Beta Was this translation helpful? Give feedback.
-
For future reference only: |
Beta Was this translation helpful? Give feedback.
Thanks @adulau Redis return the cursor which is
long
type since the cursor is related to dictionary hash slot, but in kvrocks, we store all keys in SST file, we can't find a long type value to record the iterator point, we use the iterated key as cursor, so the cursor isstring
type.