doido-cache 0.0.6

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

#[tokio::test]
async fn test_full_roundtrip_through_named_namespaced_registry() {
    let mut reg = CacheRegistry::new();
    let ns_store = NamespacedStore::new(MemoryStore::new(), "myapp:test");
    reg.add("primary", Arc::new(ns_store));

    let store = reg.store("primary").unwrap();
    store
        .set("user:1", json!({"name": "Alice"}), None)
        .await
        .unwrap();
    let val = store.get("user:1").await.unwrap().unwrap();
    assert_eq!(val["name"], "Alice");
}

#[tokio::test]
async fn test_memory_store_as_dyn_cache_store() {
    let store: Arc<dyn CacheStore> = Arc::new(MemoryStore::new());
    store.set("x", json!(99), None).await.unwrap();
    assert_eq!(store.get("x").await.unwrap(), Some(json!(99)));
    store.delete("x").await.unwrap();
    assert!(store.get("x").await.unwrap().is_none());
}