5个版本 (破坏性更新)
0.5.0 | 2022年8月23日 |
---|---|
0.4.0 | 2021年7月27日 |
0.3.0 | 2021年2月16日 |
0.2.0 | 2021年2月16日 |
0.1.0 | 2020年6月2日 |
在数据库接口中排名第2077
每月下载量:74
12KB
223 行
bb8-memcached
bb8适配器,用于memcached,基于memcache-async
许可证
MIT
lib.rs
:
为bb8连接池提供Memcached支持。
示例
use futures::future::join_all;
use bb8_memcached::{bb8, MemcacheConnectionManager};
#[tokio::main]
async fn main() {
let manager = MemcacheConnectionManager::new("tcp://127.0.0.1:11211").unwrap();
let pool = bb8::Pool::builder().build(manager).await.unwrap();
let mut handles = vec![];
for _i in 0..10 {
let pool = pool.clone();
handles.push(tokio::spawn(async move {
let mut conn = pool.get().await.unwrap();
let version = conn.version().await.unwrap();
}));
}
join_all(handles).await;
}
依赖关系
~5–14MB
~188K SLoC