-
Port of https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/issues/1180, we should update async usage guide of README to showcase both SQLAlchemy connection pool and native asyncpg conne…
-
Based on the deprecation warnings in 0.2.5 I changed my application code from:
```python
async with pool.acquire() as conn:
```
to:
```python
async with pool.connection() as conn:
```
…
-
I followed the following documentation to have chat and feedback persistence` https://docs.chainlit.io/data-persistence/custom`
Below I report the code of my app and the requirements
```
import c…
-
# Feature Request: Async Client
Most of what `vecs` manages involves interacting with a database over a network. Sqlalchemy and psycopg2 both support async operations but `vecs` does not. Creating …
-
Hi,
We use middleware and request state to bind a SQLAlchemy session to a request. Is there a way to inject the `Request` object from FastAPI in `magic-di` dependency chain?
-
### Describe the bug
Given a model `A` with a column_property `B`, a query that loads an `aliased` of `A` will emit the `B` expression multiple times (exact number depends on the complexity of the qu…
-
### Describe the bug
Full repro is here: https://gist.github.com/tamird/7e442d57789d196fa7da5c9e8dbcfb05
TL;DR if you have a CTE that is `aliased` and you write `select(user_cte).where(user.keywor…
-
adapt the approach taken by SQLAlchemy in https://github.com/sqlalchemy/sqlalchemy/blob/master/lib/sqlalchemy/util/_concurrency_py3k.py to provide for an AsyncCacheRegion frontend.
backends will as…
-
## Issue
I have a large codebase with several intensive queries to BigQuery. I'm trying to port these synchronous queries to async to improve performance, but am unable to create an async SQLAlchem…
-
### How do you use Sentry?
Sentry Saas (sentry.io)
### Version
1.39.1
### Steps to Reproduce
When using the encode/databases package for async database access in FastAPI, queries are no…