Skip to content

Commit fc3ff05

Browse files
authored
DEV: fix bug on RQE>Admin>Config page (#1450)
1 parent 1afd9ec commit fc3ff05

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

content/develop/interact/search-and-query/administration/configuration.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,20 @@ categories:
1010
- oss
1111
- kubernetes
1212
- clients
13-
description: 'Redis Query Engine can be tuned through multiple
14-
configuration parameters. Some of these parameters can only be set at load-time,
15-
while other parameters can be set either at load-time or at run-time.'
13+
description: Redis Query Engine can be tuned through multiple configuration parameters. Some of these parameters can only be set at load-time, while other parameters can be set either at load-time or at run-time.
1614
linkTitle: Configuration parameters
1715
title: Configuration parameters
1816
weight: 1
1917
---
2018
{{< note >}}
21-
As of Redis Community Edition (CE) 8.0, configuration parameters for the time series data structure are now set in the following ways:
19+
As of Redis Community Edition (CE) 8.0, configuration parameters for Redis Query Engine (RQE) are now set in the following ways:
2220
* At load time via your `redis.conf` file.
2321
* At run time (where applicable) using the [`CONFIG SET`]({{< relref "/commands/config-set" >}}) command.
2422

25-
Also, CE 8.0 persists probabilistic configuration parameters just like any other configuration parameters (e.g., using the [`CONFIG REWRITE`]({{< relref "/commands/config-rewrite/" >}}) command).
23+
Also, CE 8.0 persists RQE configuration parameters just like any other configuration parameters (for example, using the [`CONFIG REWRITE`]({{< relref "/commands/config-rewrite/" >}}) command).
2624
{{< /note >}}
2725

28-
## Redis Query Engine configuration parameters
26+
## RQE configuration parameters
2927

3028
The following table summarizes which configuration parameters can be set at run-time, and compatibility with Redis Software and Redis Cloud.
3129

@@ -251,7 +249,7 @@ Redis Cloud defaults:
251249

252250
Added in v2.10.8.
253251

254-
The maximum number of cursors that can be opened, per shard, at any given time. Cursors can be opened by the user via [`FT.AGGREGATE WITHCURSOR`]({{< relref "/commands/ft.aggregate/" >}}). Cursors are also opened internally by the Redis Query Engine for long-running queries. Once `INDEX_CURSOR_LIMIT` is reached, any further attempts to open a cursor will result in an error.
252+
The maximum number of cursors that can be opened, per shard, at any given time. Cursors can be opened by the user via [`FT.AGGREGATE WITHCURSOR`]({{< relref "/commands/ft.aggregate/" >}}). Cursors are also opened internally by the RQE for long-running queries. Once `INDEX_CURSOR_LIMIT` is reached, any further attempts to open a cursor will result in an error.
255253

256254
{{% alert title="Notes" color="info" %}}
257255
* Caution should be used in modifying this parameter. Every open cursor results in additional memory usage.
@@ -344,7 +342,7 @@ Default: `3`
344342

345343
### search-min-prefix
346344

347-
The minimum number of characters allowed for prefix queries (e.g., hel*). Setting it to `1` can reduce performance.
345+
The minimum number of characters allowed for prefix queries (for example, hel*). Setting it to `1` can reduce performance.
348346

349347
Type: integer
350348

@@ -377,7 +375,7 @@ Default: `100`
377375

378376
### search-no-mem-pools
379377

380-
Set Redis Query Engine to run without memory pools.
378+
Set RQE to run without memory pools.
381379

382380
Type: boolean
383381

@@ -490,7 +488,7 @@ Default: `20`
490488
### search-upgrade-index
491489

492490
Relevant only when loading an v1.x RDB file. Specify the argument for upgrading the index.
493-
This configuration setting is a special configuration option introduced to upgrade indexes from v1.x Redis Query Engine versions, otherwise known as legacy indexes. This configuration option needs to be given for each legacy index, followed by the index name and all valid options for the index description (also referred to as the `ON` arguments for following hashes) as described on [FT.CREATE]({{< relref "/commands/ft.create/" >}}) command page.
491+
This configuration setting is a special configuration option introduced to upgrade indexes from v1.x RQE versions, otherwise known as legacy indexes. This configuration option needs to be given for each legacy index, followed by the index name and all valid options for the index description (also referred to as the `ON` arguments for following hashes) as described on [FT.CREATE]({{< relref "/commands/ft.create/" >}}) command page.
494492

495493
Type: string
496494

@@ -569,7 +567,7 @@ $ redis-server --loadmodule ./redisearch.so [OPT VAL]...
569567

570568
These methods are deprecated beginning with Redis CE v8.0.0.
571569

572-
Redis Query Engine exposes the `FT.CONFIG` endpoint to allow for the setting and retrieval of configuration parameters at run-time.
570+
RQE exposes the `FT.CONFIG` endpoint to allow for the setting and retrieval of configuration parameters at run-time.
573571

574572
To set the value of a configuration parameter at run-time (for supported parameters), simply run:
575573

0 commit comments

Comments
 (0)