list_lpop
Remove and return elements from the left side of a Redis list, specifying the key and optional count to manage data efficiently.
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"
}