Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Enum SearchScanConsistency

Sets the desired index scan consistency for current N1QL query.

Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public enum SearchScanConsistency

Fields

Name Description
AtPlus

Do not use; for RYOW use ConsistentWith(MutationState) and do not specify a SearchScanConsistency.

NotBounded

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

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.

  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.