feat: add redis populate
This commit is contained in:
parent
60121a01c2
commit
fd9ad62278
24
examples/populate_redis.rs
Normal file
24
examples/populate_redis.rs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
///
|
||||||
|
/// $ cargo run --example populate_redis
|
||||||
|
///
|
||||||
|
|
||||||
|
use redis::{
|
||||||
|
//RedisResult,
|
||||||
|
Client,
|
||||||
|
Commands,
|
||||||
|
Connection,
|
||||||
|
};
|
||||||
|
|
||||||
|
fn do_something() -> redis::RedisResult<()> {
|
||||||
|
let client = Client::open("redis://127.0.0.1/")?;
|
||||||
|
let mut con: Connection = client.get_connection()?;
|
||||||
|
|
||||||
|
let _ = con.set("/clientkey", "/pl/0/")?;
|
||||||
|
let _ = con.set("/EDH/0", "[[1.0, 0.0, 0.0],\n [ 0.0, 1.0, 0.0],\n [ 0.0, 0.0, 1.0]]")?;
|
||||||
|
let _ = con.set("/kpps/0", "5000")?;
|
||||||
|
let _ = con.set("/intensity/0", "255")?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
fn main() {
|
||||||
|
_ = do_something();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user