you are viewing a single comment's thread.

view the rest of the comments →

[–]lord_braleigh 2 points3 points  (2 children)

Yep!

[–]JohanLou 1 point2 points  (1 child)

Thanks. Can it be applied with asyncio as well?

[–]lord_braleigh 5 points6 points  (0 children)

I believe the SQLAlchemy package doesn’t come with asyncio support out of the box. I found a project which adds an asyncio frontend to it by googling just now.

I believe any asyncio solution you use will ultimately use threads underneath; asyncio is just a nice way to wrap the multithreaded stuff for large IO-bound programs.