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
{{ message }}
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
Describe the bug
I had my code running with redis-py in the version sync.
I added asycn/await everywhere and replaced the import of redis with aioredis.
zrevrangebyscore after that started returning no results, empty list, despite with redis-py sync it was returning values correctly!
now my code was with async/await so I tried to use
from redis import asyncio as aioredis
And magically zrevrangebyscore is returning results as expected again.
So I think there is some difference between the version implemented in redis-py and aioredis. What is the difference?
Anyways I fixed using redis-py in his async version.
aioredis version 2.0.1
redis-py version 4.3.4
To Reproduce
use zrevrangebyscore in aioredis and redis
Expected behavior
working the same way between aioredis and redis-py
Logs/tracebacks
Python Version
aioredis Version
Additional context
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: