mirror of
https://github.com/actix/examples
synced 2025-06-26 17:17:42 +02:00
update minijinja version
This commit is contained in:
@ -9,5 +9,5 @@ actix-web.workspace = true
|
||||
env_logger.workspace = true
|
||||
futures-util.workspace = true
|
||||
log.workspace = true
|
||||
redis = { version = "0.22", default-features = false, features = ["tokio-comp", "connection-manager"] }
|
||||
redis = { version = "0.23", default-features = false, features = ["tokio-comp", "connection-manager"] }
|
||||
serde.workspace = true
|
||||
|
@ -19,7 +19,7 @@ async fn cache_stuff(
|
||||
.await
|
||||
.map_err(error::ErrorInternalServerError)?;
|
||||
|
||||
let res = redis::Cmd::set_multiple(&[
|
||||
let res = redis::Cmd::mset(&[
|
||||
("my_domain:one", info.one),
|
||||
("my_domain:two", info.two),
|
||||
("my_domain:three", info.three),
|
||||
|
Reference in New Issue
Block a user