async-fred-session
Redis backed session store for async-session using fred.rs. This work is mostly based on async-redis-session.
use async_fred_session::RedisSessionStore;
use async_session::{Session, SessionStore};
use fred::{pool::RedisPool, prelude::*};
// pool creation
let config = RedisConfig::from_url("redis://127.0.0.1:6379").unwrap();
let rds_pool = RedisPool::new(config, 6).unwrap();
rds_pool.connect(None);
rds_pool.wait_for_connect().await.unwrap();
// store and session
let store = RedisSessionStore::from_pool(rds_pool, Some("async-fred-session/".into()));
let mut session = Session::new();
session.insert("key", "value").unwrap();
let cookie_value = store.store_session(session).await.unwrap().unwrap();
let session = store.load_session(cookie_value).await.unwrap().unwrap();
assert_eq!(&session.get::<String>("key").unwrap(), "value");