string_mget
Retrieve multiple key values in a single operation to efficiently access Redis database entries, reducing query overhead and optimizing performance for bulk data handling.
Instructions
批量获取键值
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keys | Yes | 键名数组 |
Input Schema (JSON Schema)
{ "properties": { "keys": { "description": "键名数组", "items": { "type": "string" }, "type": "array" } }, "required": [ "keys" ], "type": "object" }