3个版本 (重大更新)
0.3.0 | 2020年12月6日 |
---|---|
0.2.0 | 2020年12月6日 |
0.1.0 | 2020年8月30日 |
#2413 in 数据库接口
6KB
90 行
Redis Cache
由redis支持的casbin-rs共享内存缓存。
安装
[dependencies]
casbin = { version = "2.0.1", default-features = false, features = ["runtime-async-std", "logging", "cached"] }
redis-cache = { version = "0.2.0" }
async-std = { version = "1.5.0", features = ["attributes"] }
入门
use casbin::prelude::*;
use redis_cache::RedisCache;
#[async_std::main]
async fn main() -> Result<()> {
let mut e = CachedEnforcer::new("examples/rbac_with_domains_model.conf", "examples/rbac_with_domains_policy.csv").await?;
e.enable_log(true);
let redis_cache: RedisCache<u64, bool> = RedisCache::new("redis://127.0.0.1:6379/1");
e.set_cache(Box::new(redis_cache));
e.enforce_mut(("alice", "domain1", "data1", "read"))?;
}
依赖
~12–25MB
~390K SLoC