Skip to content

Commit 9124e1d

Browse files
authored
Apply suggestions from code review
1 parent 0b37305 commit 9124e1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/develop/interact/search-and-query/best-practices/scalable-query-best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ Below are some basic steps to ensure good performance of the Redis Query Engine
3535
- Put only those fields used in your queries in the index.
3636
- Only make fields [`SORTABLE`]({{< relref "/develop/interact/search-and-query/advanced-concepts/sorting" >}}) if they are used in [`SORTBY`]({{< relref "/develop/interact/search-and-query/advanced-concepts/sorting#specifying-sortby" >}})
3737
queries.
38-
- Use [`DIALECT 2`]({{< relref "/develop/interact/search-and-query/advanced-concepts/dialects#dialect-4" >}}).
38+
- Use [`DIALECT 2`]({{< relref "/develop/interact/search-and-query/advanced-concepts/dialects#dialect-2" >}}).
3939

4040
### Threaded (query performance factor or QPF) search
4141
- Put both query fields and any projected fields (`RETURN` or `LOAD`) in the index.
4242
- Set all fields to `SORTABLE`.
4343
- Set TAG fields to [UNF]({{< relref "/develop/interact/search-and-query/advanced-concepts/sorting#normalization-unf-option" >}}).
4444
- Optional: Set `TEXT` fields to `NOSTEM` if the use case will support it.
45-
- Use [`DIALECT 2`]({{< relref "/develop/interact/search-and-query/advanced-concepts/dialects#dialect-4" >}}).
45+
- Use [`DIALECT 2`]({{< relref "/develop/interact/search-and-query/advanced-concepts/dialects#dialect-2" >}}).
4646

4747
## Query optimization
4848

0 commit comments

Comments
 (0)