Redis-async-pool implements a deadpool manager for asynchronous
connections of the redis crate. Connections returned by the pool can be used as regular redis::aio::Connection
.
## Features
optional ttl on connections
```rust use redis::AsyncCommands; use redisasyncpool::{RedisConnectionManager, RedisPool};
// Create a pool of maximum 5, checked on reuse without ttl. let pool = RedisPool::new( RedisConnectionManager::new(redis::Client::open("redis://localhost:6379")?, true, None), 5, );
// get a connection with the get() async method and use it as regular redis connection
let mut con = pool.get().await?;
con.set(b"key", b"value").await?;
let value: Vec
You can set a ttl for each created connection by the pool, this helps avoiding huge memory consumption when keeping many connections open during a too long time.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.