Julius de Bruijn

Results 174 comments of Julius de Bruijn

If you take a look here https://github.com/napi-rs/napi-rs/blob/main/build/src/windows.rs#L44, it allows you to set the host for downloading the files. Maybe create a local mirror with the files needed, and set the...

Can you share a bit more details: - Prisma version - The connection string (all password/user/hostname info hidden) - Maybe even your data model, if possible! No, this doesn't look...

Could you try setting a smaller `statement_cache_size` and see if it helps reducing the memory usage? Something like `statement_cache_size=50` and let it run with that.

Oh nice. We will for sure use the HTTP API in the future, so an investigation is still needed...

So. Trying not to go too far into details, here is how it works: In certain databases, the statement caching should be handled in the client (SQL Server being different...

Tokio 0.1 is out. It would make lots of sense to build consumers on top of it. There's already action going on in Hyper land (HEAD works well with Tokio)...

I have lots of experience with Rust but not so much with tokio (except having a POC of FCM on top of Hyper tokio). We need this lib as an...

One more point why this would make sense: Errors would be the same. Now there are differences, such as not being able to `execute` queries without an error with SQLite...

Before reviewing the PR, have you tried extending the CTE interface for your needs? https://prisma.github.io/quaint/quaint/ast/trait.IntoCommonTableExpression.html#method.into_cte I'm just seeing this would fit for your needs, but it for now supports only...

I'd like to see a PR first implementing the CTE fixes, I need to think a bit more on the other PR before accepting the solution. And I'm pretty fried...