list_rpop
Remove and retrieve elements from the right end of a Redis list. Specify the list key and optionally the number of elements to pop for efficient data management.
Instructions
右侧弹出列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | 弹出数量(可选) | |
key | Yes | 列表键名 |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "弹出数量(可选)",
"type": "number"
},
"key": {
"description": "列表键名",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}