with one click
ix-cache
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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