content/operate/oss_and_stack/stack-with-enterprise/search/config.md
To configure RediSearch in [Redis Software]({{< relref "/operate/rs" >}}) or [Redis Cloud]({{< relref "/operate/rc" >}}), use one of the following methods instead of [FT.CONFIG SET]({{< relref "commands/ft.config-set" >}}).
For Redis Cloud:
Flexible or Annual [subscriptions]({{< relref "/operate/rc/subscriptions" >}}): contact support to request a configuration change.
Free or Fixed subscriptions: you cannot change RediSearch configuration.
For Redis Software, use one of the following methods:
Cluster Manager UI:
From the Databases list, select the database, then click Configuration.
Select the Edit button.
In the Capabilities section, click Parameters.
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 Search in Redis Software]({{<relref "/operate/oss_and_stack/stack-with-enterprise/search/query-performance-factor">}}) for more information.
{{<image filename="images/rs/screenshots/databases/rs-config-search-params.png" alt="The Parameters dialog includes sections to edit RediSearch settings and the Query Performance Factor settings.">}}
After you finish editing the module's configuration parameters, click Done to close the parameter editor.
Click Save.
[rladmin tune db]({{< relref "/operate/rs/references/cli-utilities/rladmin/tune#tune-db" >}}):
$ rladmin tune db db:<ID|name> module_name search \
module_config_params "setting-name setting-value"
[Configure module]({{< relref "/operate/rs/references/rest-api/requests/modules/config" >}}) REST API request:
POST /v1/modules/config/bdb/<ID>
{
"modules": [
{
"module_name": "search",
"module_args": "setting-name setting-value"
}
]
}
See [configuration parameters]({{< relref "/develop/ai/search-and-query/administration/configuration" >}}) in the Develop section for parameter details and compatibility with Redis Software and Redis Cloud.