بنقرة واحدة
ix-cache
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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