You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.1 KiB
82 lines
2.1 KiB
use tokio::sync::mpsc;
|
|
use bytes::Bytes;
|
|
use mini_redis::client;
|
|
use tokio::sync::oneshot;
|
|
|
|
/// 管理任务可以使用该发送端将命令执行的结果传回给发出命令的任务
|
|
type Responder<T> = oneshot::Sender<mini_redis::Result<T>>;
|
|
|
|
#[derive(Debug)]
|
|
enum Command {
|
|
Get {
|
|
key: String,
|
|
resp: Responder<Option<Bytes>>,
|
|
},
|
|
Set {
|
|
key: String,
|
|
val: Bytes,
|
|
resp: Responder<()>,
|
|
}
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
// 创建一个新通道,缓冲队列长度是 32
|
|
let (tx, mut rx) = mpsc::channel(32);
|
|
let tx2 = tx.clone();
|
|
|
|
// 将消息通道接收者 rx 的所有权转移到管理任务中
|
|
let manager = tokio::spawn(async move {
|
|
// Establish a connection to the server
|
|
// 建立到 redis 服务器的连接
|
|
let mut client = client::connect("127.0.0.1:6379").await.unwrap();
|
|
|
|
// 开始接收消息
|
|
while let Some(cmd) = rx.recv().await {
|
|
match cmd {
|
|
Command::Get { key, resp } => {
|
|
let res = client.get(&key).await;
|
|
// 忽略错误
|
|
let _ = resp.send(res);
|
|
}
|
|
Command::Set { key, val, resp } => {
|
|
let res = client.set(&key, val).await;
|
|
// 忽略错误
|
|
let _ = resp.send(res);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
//执行Get和Set发送命令
|
|
let t1 = tokio::spawn(async move {
|
|
let (resp_tx, resp_rx) = oneshot::channel();
|
|
let cmd = Command::Get { key: "hello".to_string(), resp: resp_tx };
|
|
|
|
tx.send(cmd).await.unwrap();
|
|
|
|
let res = resp_rx.await;
|
|
println!("GOT = {:#?}",res);
|
|
});
|
|
|
|
let t2 = tokio::spawn(async move {
|
|
let (resp_tx, resp_rx) = oneshot::channel();
|
|
let cmd = Command::Set {
|
|
key: "foo".to_string(),
|
|
val: "bar".into(),
|
|
resp: resp_tx,
|
|
};
|
|
|
|
tx2.send(cmd).await.unwrap();
|
|
|
|
let res = resp_rx.await;
|
|
println!("GOT = {:#?}",res);
|
|
});
|
|
|
|
t1.await.unwrap();
|
|
t2.await.unwrap();
|
|
manager.await.unwrap();
|
|
|
|
|
|
}
|