4个版本
0.1.3 | 2021年7月29日 |
---|---|
0.1.2 | 2021年7月29日 |
0.1.1 | 2021年7月28日 |
0.1.0 | 2021年7月28日 |
#1013 in 异步
每月21次下载
78KB
2K SLoC
Alopecosa
Alopecosa是一个基于tokio(版本1)构建的方便的纯Rust Tarantool 1.6+连接器。
顺便说一句,alopecosa是栖息在日本的一种蜘蛛。
示例
use std::{
error::Error,
time::Duration,
sync::Arc,
};
use alopecosa::{
Connection, Connector, IntoTuple,
Call, Eval, Select, Iterator
};
use tokio::time::timeout;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let addr = "127.0.0.1:3301".parse()?;
let conn: Arc<Connection> = Connector::new(addr)
.connect().await?;
let eval_resp: (u32, u32) = conn.eval(Eval {
expr: "return 1, 2".into(),
args: ().into_tuple(),
}).await?;
let select_resp: Vec<(u32, u32, u32)> = conn.select(Select {
space_id: 512, index_id: 0,
limit: 100, offset: 0,
iterator: Iterator::Ge,
keys: ( 1u64, ).into_tuple(),
}).await?;
let (resp_with_timeout,): (i32,) = timeout(
Duration::from_secs(1),
conn.call(Call {
function: "echo".into(),
args: ( 123, ).into_tuple(),
})
).await??;
Ok(())
}
身份验证
let addr = "127.0.0.1:3301".parse()?;
let conn: Arc<Connection> = Connector::new(addr)
.with_auth("user".into(), "password".into())
.connect().await?;
连接调整
let addr = "127.0.0.1:3301".parse()?;
let conn: Arc<Connection> = Connector::new(addr)
.with_connect_timeout(Duration::from_secs(10))
.with_reconnect_interval(Duration::from_secs(1))
.with_send_request_timeout(Duration::from_secs(10))
.connect().await?;
依赖关系
~4–13MB
~150K SLoC