json_set
Set or update JSON values at specific paths in Redis, optionally with an expiration time. Simplify JSON data management and storage in Redis with precise path-based updates.
Instructions
Set a JSON value in Redis at a given path with an optional expiration time.
Args: name: The Redis key where the JSON document is stored. path: The JSON path where the value should be set. value: The JSON value to store. expire_seconds: Optional; time in seconds after which the key should expire.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expire_seconds | No | ||
name | Yes | ||
path | Yes | ||
value | Yes |