Skip to main content

Enumeration: SearchConsistency

Defined in: utils/search-consistency.ts:1

Enumeration Members

GLOBAL

GLOBAL: 2

Defined in: utils/search-consistency.ts:26

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


LOCAL

LOCAL: 1

Defined in: utils/search-consistency.ts:16

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


NONE

NONE: 0

Defined in: utils/search-consistency.ts:6

No degree consistency required. Called as NOT_BOUNDED in Couchbase Server.