doido-cache 0.0.6

Named cache stores, TTL — memory/Redis/Memcached backends in ActiveSupport::Cache fashion for Doido.
Documentation
use doido_cache::{CacheStore, MemoryStore, NamespacedStore};
use serde_json::json;

#[tokio::test]
async fn test_namespaced_store_prepends_prefix() {
    let inner = MemoryStore::new();
    let ns = NamespacedStore::new(inner, "myapp:prod:custom");
    ns.set("users:1", json!("alice"), None).await.unwrap();
    assert_eq!(ns.get("users:1").await.unwrap(), Some(json!("alice")));
    assert!(ns.get("non:existent").await.unwrap().is_none());
}

#[tokio::test]
async fn test_namespaced_delete() {
    let ns = NamespacedStore::new(MemoryStore::new(), "app");
    ns.set("k", json!(1), None).await.unwrap();
    ns.delete("k").await.unwrap();
    assert!(ns.get("k").await.unwrap().is_none());
}