Enum QueryFlags
Flags to indicate the options of a query.
Namespace: Redis.OM.Searching.Query
Assembly: Redis.OM.dll
Syntax
public enum QueryFlags
Fields
| Name | Description |
|---|---|
| Nocontent | If it appears after the query, we only return the document ids and not the content. This is useful if RediSearch is only an index on an external document collection. |
| NoStopWords | If set, we do not filter stop words from the query. |
| Verbatim | if set, we do not try to use stemming for query expansion but search the query terms verbatim. |
| WithPayloads | If set, we retrieve optional document payloads (see FT.ADD). the payloads follow the document id, and if WITHSCORES was set, follow the scores. |
| WithScores | If set, we also return the relative internal score of each document. T his can be used to merge results from multiple instances. |
| WithSortKeys | Only relevant in conjunction with SORTBY . Returns the value of the sorting key, right after the id and score and /or payload if requested. This is usually not needed by users, and exists for distributed search coordination purposes. |