Enum ViewScanConsistency
Sets the desired index scan consistency for current N1QL query.
Namespace: Couchbase.Views
Assembly: Couchbase.NetClient.dll
Syntax
public enum ViewScanConsistency
Fields
Name | Description |
---|---|
NotBounded | This value specifies that the view engine can use the existing index "as is" and does not need to update the index |
RequestPlus | This value specifies that the view engine must update the index before executing the view query. |
UpdateAfter | 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. |