I can't find information about django support for asynchronous database engines. For example for postgresql django supports only psycopg2 library, that is completely synchronous and nothing more is supported, for sqlite django supports only sqlite3 library that is synchronous as well. So I'm not well orientiered in django and of course I can be mistaken, but what's the sense of django asgi if it doesn't support asynchronous database engines(I mean, then all the asynchronous code becomes synchronous) ?
And the second question, is there any way to use asynchronous engines in django ?
This is from the Django Docs
*Are you looking for what kind of database async support? *
https://docs.djangoproject.com/en/4.0/topics/async/