Redis – python asyncio is much slower than threads when reading files from hard disk
There are about 1M images, I need to read them and insert the bytes into redis with python. I have two choices, the first is to use a thread pool, and the second is to use asyncio, since this is…