sz-orm-pool 1.2.2

SZ-ORM Connection Pool, Transaction, Circuit Breaker, and Rate Limiter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! SZ-ORM Connection Pool
//!
//! 自研连接池(AtomicU32 + crossbeam-queue ArrayQueue + Notify),
//! 非 deadpool。包含断路器、限流器集成。

pub mod cache;
pub mod circuit_breaker;
pub mod guard;
pub mod pool;
pub mod rate_limiter;
pub mod transaction;

pub use cache::*;
pub use circuit_breaker::*;
pub use guard::*;
pub use pool::*;
pub use rate_limiter::*;
pub use transaction::*;