deadpool icon indicating copy to clipboard operation
deadpool copied to clipboard

Dead simple pool implementation for rust with async-await

Results 106 deadpool issues
Sort by recently updated
recently updated
newest added

Diesel 2.0.0-rc.0 is out, I plan to adapt my project to v2, but deadpool not support diesel v2.

enhancement
A-diesel

This is related to #67

enhancement
A-core

It's confusing that `Status.available` can reach negative values as seen in #191. Therefore the `Status` struct should probably be changed to this structure: ```rs /// The current pool status. #[derive(Clone,...

enhancement
A-core
quality of life

Is it possible to connect using url? Like `psql://user:pass@host/db`

enhancement
A-postgres

Fixes #199. The _available_ counter in the Status struct could also represent the number of futures waiting for an object, this could cause some confusion (see #191.) This PR splits...

Hello all, this pull request implements the GenericClient trait for Postgres. Only a minimal set of functions have been implemented, which I used in my application. And there is no...

This adds [`deadpool-arangodb`](https://github.com/Weasy666/deadpool-arangodb) to the repository. I have marked the PR as `WIP`, because there is still a problem with `use serde_1::Deserialize;` being marked as `unresolved import` in `tests/arangodb.rs` and...