 | 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
Syntaxpublic enum ViewScanConsistency
Members
| Member name | Value | Description |
---|
| RequestPlus | 0 |
This value specifies that the view engine must update the index before executing the view query.
|
| UpdateAfter | 1 |
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.
|
| NotBounded | 2 |
This value specifies that the view engine can use the existing index "as is" and does not
need to update the index
|
See Also