【Tokio】设值和取值

环境

  • Time 2022-01-13
  • Rust 1.57.0
  • Tokio 1.15.0

概念

参考:https://tokio.rs/tokio/tutorial/hello-tokio

示例

main.rs

use mini_redis::{client, Result};

#[tokio::main]
async fn main() -> Result<()> {
    // 连接服务器地址
    let mut client = client::connect("127.0.0.1:6379").await?;

    // 设值命令
    client.set("hello", "world".into()).await?;
    // 取值命令
    let result = client.get("hello").await?;
    // 获取结果
    println!("got value from the server; result={:?}", result);
    Ok(())
}

总结

向服务器设值和取值。

附录

posted @   jiangbo4444  阅读(89)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示