Search and query configuration compatibility with Redis Enterprise

Search and query configuration settings supported by Redis Enterprise Software and Redis Cloud.

To configure RediSearch in Redis Enterprise Software or Redis Cloud, use one of the following methods instead of FT.CONFIG SET.

Configure search in Redis Cloud

For Redis Cloud:

  • Flexible or Annual subscriptions: contact support to request a configuration change.

  • Free or Fixed subscriptions: you cannot change RediSearch configuration.

Configure search in Redis Software

For Redis Enterprise Software, use one of the following methods:

  • Cluster Manager UI:

    1. From the Databases list, select the database, then click Configuration.

    2. Select the Edit button.

    3. In the Capabilities section, click Parameters.

    4. Enter the setting name and setting value in the RediSearch box.

      In the Query Performance Factor section, you can configure settings to improve query performance. See Configure the query performance factor for Redis Query Engine in Redis Enterprise for more information.

      The Parameters dialog includes sections to edit RediSearch settings and the Query Performance Factor settings.
    5. After you finish editing the module's configuration parameters, click Done to close the parameter editor.

    6. Click Save.

  • rladmin tune db:

    $ rladmin tune db db:<ID|name> module_name search \
        module_config_params "setting-name setting-value"
    
  • Configure module REST API request:

    POST /v1/modules/config/bdb/<ID>
    {
      "modules": [
        {
          "module_name": "search",
          "module_args": "setting-name setting-value"
        }
      ]
    }
    

Configuration settings

See configuration parameters in the Develop section for parameter details and compatibility with Redis Software and Redis Cloud.

RATE THIS PAGE
Back to top ↑