mirror of
https://github.com/guilhermewerner/mini-redis
synced 2025-06-15 22:45:48 +00:00
Create Simple TCP Listener
This commit is contained in:
17
Examples/Hello.rs
Normal file
17
Examples/Hello.rs
Normal file
@ -0,0 +1,17 @@
|
||||
use mini_redis::{client, Result};
|
||||
|
||||
#[tokio::main]
|
||||
pub async fn main() -> Result<()> {
|
||||
// Open a connection to the mini-redis address.
|
||||
let mut client = client::connect("127.0.0.1:6379").await?;
|
||||
|
||||
// Set the key "hello" with value "world"
|
||||
client.set("hello", "world".into()).await?;
|
||||
|
||||
// Get key "hello"
|
||||
let result = client.get("hello").await?;
|
||||
|
||||
println!("{:?}", result);
|
||||
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user