cache
Store key-value data with time-to-live expiration and namespace isolation. Enable set, get, delete, list, and clear operations for managing cached entries.
Instructions
Key-value cache with TTL and namespaces. Operations: set, get, delete, list, clear.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | The cache key (required for set/get/delete) | |
| value | No | The value to cache (for 'set' operation) | |
| namespace | No | Cache namespace for grouping keys (default: 'default') | |
| operation | Yes | The cache operation to perform | |
| ttl_seconds | No | Time-to-live in seconds (default: 3600, for 'set' operation) |