Closed Drapersniper closed 2 years ago
redis-py had Async support introduced in 4.2.x by merging aioredis into it
To migrate to it the change is as simple as from redis import asyncio as aioredis
from redis import asyncio as aioredis
Sure! Thanks for the heads up.
Done.
Feature description
redis-py had Async support introduced in 4.2.x by merging aioredis into it
To migrate to it the change is as simple as
from redis import asyncio as aioredis