Enumeration: SearchConsistency
Enumeration Members
GLOBAL
• GLOBAL = 2
Operations performed by any client of the Couchbase Server up to the time of the queries dispatch will be reflected in any index results. This is the slowest of all consistency levels as it requires that the server synchronize its indexes to the current key-value state prior to execution of the query. Called as REQUEST_PLUST in Couchbase Server
Defined in
utils/search-consistency.ts:26
LOCAL
• LOCAL = 1
Operations performed by this ottoman instance will be reflected in queries performed by this particular ottoman instance. This type of consistency will be slower than no consistency, but faster than GLOBAL as the index state is tracked internally rather than requested from the server. Called as AT_PLUS in Couchbase Server
Defined in
utils/search-consistency.ts:16
NONE
• NONE = 0
No degree consistency required. Called as NOT_BOUNDED in Couchbase Server.