get_index_info
Retrieve schema and details for a specific Redis index using FT.INFO. Input the index name to fetch structured information or error messages for efficient Redis data management.
Instructions
Retrieve schema and information about a specific Redis index using FT.INFO.
Args: index_name (str): The name of the index to retrieve information about.
Returns: str: Information about the specified index or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index_name | Yes |
Input Schema (JSON Schema)
{ "properties": { "index_name": { "title": "Index Name", "type": "string" } }, "required": [ "index_name" ], "title": "get_index_infoArguments", "type": "object" }