connection-pool 0.3.7

A high-performance, generic async connection pool for Rust with background cleanup and comprehensive logging
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

mod connection_pool;
pub use connection_pool::{CleanupConfig, ConnectionManager, ConnectionPool, ManagedConnection, PoolError};

#[cfg(feature = "tcp")]
mod tcp;
#[cfg(feature = "tcp")]
pub use tcp::{TcpConnectionManager, TcpConnectionPool, TcpManagedConnection};