From 8775337521188a98d354eb41b2d4695e3a659ff1 Mon Sep 17 00:00:00 2001 From: Chris Mague Date: Thu, 5 May 2022 15:44:59 -0700 Subject: [PATCH] The example of using ft needs updating The search module is now reported as "search" according to the API and no longer as FT according to the docs: ``` { ... "min_redis_pack_version": "6.0.8", "min_redis_version": "6.0", "module_name": "search", "semantic_version": "2.2.6", "sha256": "7a98c5501d7e86269bb0cb8f752032f64e11ea10a5f640f011ed33921d9cd956", "uid": "ee706bdebb5c94658005e25184b0953c", "version": 20206 }, ``` --- redis_enterprise_database_api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redis_enterprise_database_api.md b/redis_enterprise_database_api.md index ae2ad36..04f4512 100644 --- a/redis_enterprise_database_api.md +++ b/redis_enterprise_database_api.md @@ -105,8 +105,8 @@ Redis Enterprise Module: https://redislabs.com/redis-enterprise/modules/ | Field | Description | Scheme | Default Value | Required | | ----- | ----------- | ------ | -------- | -------- | -| name | The module's name e.g \"ft\" for redissearch | string | | true | -| version | Module's semantic version e.g \"1.6.12\" | string | | true | +| name | The module's name e.g \"search\" for redissearch | string | | true | +| version | Module's semantic version e.g \"2.2.6\" | string | | true | | config | Module command line arguments e.g. VKEY_MAX_ENTITY_COUNT 30 | string | | false | [Back to Table of Contents](#table-of-contents)