Skip to content

Commit

Permalink
Update Configuring.md
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelkeller committed Jan 13, 2021
1 parent 3cc4a68 commit 96e5a00
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/Configuring.md
Expand Up @@ -56,7 +56,7 @@ The response policy for queries that exceed the `TIMEOUT` setting.
The policy can be one of the following:

* **RETURN**: this policy will return the top results accumulated by the query until it timed out.
* **FAIL**: will return an error when the query exeeds the timeout value.
* **FAIL**: will return an error when the query exceeds the timeout value.

### Default

Expand Down Expand Up @@ -129,11 +129,11 @@ $ redis-server --loadmodule ./redisearch.so EXTLOAD ./ext/my_extension.so

## MINPREFIX

The minimum number of characters we allow for prefix queries (e.g. `hel*`). Setting it to 1 can hurt performance.
The minimum number of characters we allow for prefix queries (e.g. `hel*`).

### Default

2
1

### Example

Expand All @@ -145,11 +145,11 @@ $ redis-server --loadmodule ./redisearch.so MINPREFIX 3

## MAXEXPANSIONS

The maximum number of expansions we allow for query prefixes. Setting it too high can cause performance issues.
The maximum number of expansions we allow for query prefixes. Setting it too high can cause performance issues. If MAXEXPANSIONS is reached, the query will continue with the first acquired results. The default value is set to the LONG_MAX constant.

### Default

200
9223372036854775807

### Example

Expand Down

0 comments on commit 96e5a00

Please sign in to comment.