cache_get
Retrieve a stored value from a cache instance by key. Returns the value or null if the key is missing or expired.
Instructions
Get a value from a running cache instance by key. Returns the stored value (string or deserialized JSON object) or null if the key does not exist or has expired. Read-only — no side effects. Use cache_mget when you need multiple keys in one round-trip. Use cache_exists to check existence without retrieving the value. Use semantic_search when you need fuzzy/vector search across stored values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Cache key to retrieve | |
| org_id | No | Optional org ID — if the direct key misses, falls back to the shared org namespace org:{org_id}:sem:{key} | |
| instance_id | Yes | UUID of the instance |