rpush
Add a value to the end of a Redis list and optionally configure an expiration time for efficient data management and storage.
Instructions
Push a value onto the right of a Redis list and optionally set an expiration time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expire | No | ||
name | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"expire": {
"default": null,
"title": "Expire",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"value": {
"anyOf": [
{
"format": "binary",
"type": "string"
},
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "number"
}
],
"title": "Value"
}
},
"required": [
"name",
"value"
],
"title": "rpushArguments",
"type": "object"
}