set_members
Retrieve all members of a set stored in Redis using the specified key. Enables efficient data access and management for sets in Redis databases.
Instructions
获取集合所有成员
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | 集合键名 |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "集合键名",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}