chore: datastore redis

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-23 12:52:07 +01:00
parent 28404160ed
commit 723fbca34e

View File

@ -0,0 +1,16 @@
use redis::{AsyncCommands};
use anyhow::{Result};
pub async fn on_redis_set_str (
client: &redis::Client,
key: &str,
value: &str,
ttl_seconds: usize,
) -> Result<()> {
let mut con = client.get_async_connection().await?;
con.set(key, value).await?;
if ttl_seconds > 0 {
con.expire(key, ttl_seconds).await?;
}
Ok(())
}