django-async-orm
django-async-orm copied to clipboard
Bringing Async Capabilities to django ORM
Hello! After installing django_async_orm facing such problem with default update_or_create() function  Do you have any ideas by a chance why is it going like this? python 3.8 django 3.2.9...
Hi, @rednaks, I have added the count feature and test for the same, and with that, I have also changed some other tests accordingly and removed unused imports from the...
I need to [convert Django queryset iterator](https://docs.djangoproject.com/en/3.2/ref/databases/#server-side-cursors) to async iterator. Can I do this with django-async-orm?
Perhaps it's worth starting [django-channels](https://github.com/django/channels) library for asynchronous db calls? There is a function there. And, as I understand it, it will be more effective than it is now. 
Hi there! I love the project and would like to contribute to it! How can I do it?
when we patch models, we prefix the methods with `async_` but the new official django api prefixes the methods with `a` ex: patched api : sync `objects.get` => async `objects.async_get`...
My PR with the new syntax was merged months ago, but it has not been released. This has resulted in a mismatch between what the readme states the API is,...
this error occurs after that installation your module, you need to add setup required moduels ModuleNotFoundError: No module named 'channels'
Currently, some methods are missing. Should be pretty easy to add them.
`thread_sensitive=True` has been the default value for `asgiref` ever since Django has had async support. There is a very high chance the default will become `False` in the future when...