Opened 3 months ago
Last modified 3 months ago
#35629 assigned New feature
Implement async cursors
Reported by: | Flavio Curella | Owned by: | Flavio Curella |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | async, psycopg, PostgreSQL |
Cc: | Dingning, Jon Janzen, Andrew Godwin, Paolo Melchiorre, Evstifeev Roman | Triage Stage: | Accepted |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
With Psycopg3 offering async connections and async cursors, we can start implementing at least part of DEP0009 on the ORM
The first step would be just a low-level API, so that we can make the async cursor available to our users:
from django.db import new_connection async with new_connection(using="default") as conn: async with conn.acursor() as c: await c.execute(...)
Note: In order to have a simpler and easier review, I've considered transaction.atomic
out of scope for this ticket.
Change History (5)
comment:1 by , 3 months ago
Cc: | added |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 3 months ago
Owner: | set to |
---|---|
Status: | new → assigned |
comment:4 by , 3 months ago
Cc: | added |
---|---|
Keywords: | async psycopg PostgreSQL added |
comment:5 by , 3 months ago
Cc: | added |
---|
Note:
See TracTickets
for help on using tickets.
I see this was suggested as part 1 of a plan here: https://forum.djangoproject.com/t/dep0009-orm-implementation-plan/33194 with some positive feedback from Andrew Godwin
Tentatively accepted