I'm currently working on setting up Redis
with FastAPI
. This is my first time using redis
and in my attempt to find out whether it was possible to use redis
asynchronously, I stumbled upon aioredis-py.
According to their documentation:
However, my IDE is currently throwing the following error:
This is basically telling me that asyncio
cannot be found in redis
.
Has anyone faced a similar issue? What's the best to fix this?