mobc
mobc copied to clipboard
A generic connection pool for Rust with async/await support
Fix `More Examples` link.
Hey, we use mobc as part of Prisma and we getting into a situation where mobc complete stops serving any connections. If I create a HTTP server using hyper and...
When under very heavy load, the conn_requests can include to many Sender's with dropped Receivers. When the Conn is passed to a waiting Receiver and it was recently dropped the...
This adds [mobc-bolt](https://crates.io/crates/mobc-bolt) to the README.
Hey! I've been using mobc-redis in a project for a while and I found a strange issue, which so far only happened in production (so with a lot of load)...
Fixes https://github.com/importcjj/mobc/issues/58 So this is somewhat of a big change: - The connection cleaner now checks for the idle lifetime (time since last used). The current lazy only technique is...
Currently there are a bunch of FIXME for dropped result. I think we should find a way to report those back to the user. Minimum would be to log them,...
Currently the idle lifetime is only checked when the connection is [requested](https://github.com/importcjj/mobc/blob/master/src/lib.rs#L494). It should also be checked by the [cleaner](https://github.com/importcjj/mobc/blob/master/src/lib.rs#L747). Imagine the following scenario: - You have a low idle...
* Mysql * Sqlite ....