django-async-orm icon indicating copy to clipboard operation
django-async-orm copied to clipboard

Bringing Async Capabilities to django ORM

Results 11 django-async-orm issues
Sort by recently updated
recently updated
newest added
trafficstars

Hello! After installing django_async_orm facing such problem with default update_or_create() function ![image](https://user-images.githubusercontent.com/55602521/184369582-23d988dc-2b0b-4f60-af15-7adc82a8fcea.png) 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. ![image](https://user-images.githubusercontent.com/81916132/170006981-b8bd180f-f2a0-4e80-9f9d-0afaa64711e2.png)

Hi there! I love the project and would like to contribute to it! How can I do it?

question

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...