com um clique
ix-cache
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Test model robustness with adversarial attacks and defenses
Multi-armed bandit simulation — epsilon-greedy, UCB1, Thompson sampling
Benchmark and compare ix algorithm performance
Category theory primitives — monad laws verification, free-forgetful adjunction
Chaos theory analysis — Lyapunov exponents, bifurcation, attractors, fractals
Cluster data using K-Means or DBSCAN
| name | ix-cache |
| description | Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol |
| disable-model-invocation | true |
In-memory key-value cache with Redis-compatible features.
When the user needs in-process caching, TTL-based expiry, LRU eviction, pub/sub messaging, or a lightweight Redis-compatible RESP server.
set, get, delete, keysuse ix_cache::{Cache, CacheConfig};
let cache = Cache::new(CacheConfig::default());
cache.set("key", &json!("value"));
let val: Option<Value> = cache.get("key");
cache.delete("key");
Tool: ix_cache — Operations: set, get, delete, keys