 | SearchScanConsistency Enumeration |
Sets the desired index scan consistency for current N1QL query.
Namespace:
Couchbase.Search
Assembly:
Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntaxpublic enum SearchScanConsistency
Members
| Member name | Value | Description |
---|
| NotBounded | 0 |
The default which means that the query can return data that is currently indexed
and accessible by the index or the view. The query output can be arbitrarily
out-of-date if there are many pending mutations that have not been indexed by
the index or the view. This consistency level is useful for queries that favor
low latency and do not need precise and most up-to-date information.
|
| RequestPlus | 1 |
This level provides the strictest consistency level and thus executes with higher
latencies than the other levels. This consistency level requires all mutations, up
to the moment of the query request, to be processed before the query execution can start.
|
| AtPlus | 2 | Obsolete.
Do not use; for RYOW use ConsistentWith(MutationState) and do not specify a SearchScanConsistency.
|
See Also