You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parallel reads over the REST API: read-only connections to the same
database now run concurrently (per-file reader-writer lock with writer
preference).
Changed
REST API endpoints (/db/*, /admin/*) offload blocking engine calls to
a threadpool via asyncio.to_thread, keeping the event loop free.
Writes remain serialized (DuckDB single-writer model); the exclusive lock
guarantees a read-only and a read-write connection never overlap.