|
|
|
|
|
by d1l
332 days ago
|
|
That's even crazier - so you're using asyncio because you have a ton of slow network-bound stuff - but for your database access you are running every sqlite connection in it's own thread and just managing those threads via the asyncio event loop? |
|
For really large data sets, you can query and wait a few minutes before getting a result. Do you really want to await that?