rust-apache-age
rust-apache-age copied to clipboard
Rust connector for the Apache AGE
The function `execute_cypher` of `Client` requires `&mut self`, which doesn't seem to be required. However, having it `mut` seems to make it impossible to use transactions, as that would also...
The underlying client can work with `&self` and concurrent requests. Having if `&mut self`, will cause an issue when creating a transaction, as the transaction will borrow the client, and...
May be missing (a good, or at all) documentation over all the features * [ ] serializers * [ ] tokio * [ ] sync
Wall of text incoming! ## TLDR My conclusion is this: We should inform users that if they have identical structs within an enum the de/serialization may not work as they...
postgres connections are notoriously expensive to set up and it's more performant to use a connection pool. [deadpool-postgres](https://docs.rs/deadpool-postgres/latest/deadpool_postgres/) is likely a best candidate .