Click or drag to resize

ViewScanConsistency Enumeration

Sets the desired index scan consistency for current N1QL query.

Namespace:  Couchbase.Views
Assembly:  Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntax
C#
public enum ViewScanConsistency
Members
  Member nameValueDescription
RequestPlus0 This value specifies that the view engine must update the index before executing the view query.
UpdateAfter1 The views engine uses the existing index as the basis of the query and marks the index to be updated after the results are returned to the client.
NotBounded2 This value specifies that the view engine can use the existing index "as is" and does not need to update the index
See Also