 | KeyState Enumeration |
In an Observe operation, indicates whether the key is persisted or not.
Namespace:
Couchbase.Core.IO.Operations
Assembly:
Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntax
Members
| Member name | Value | Description |
---|
| FoundNotPersisted | 0 |
Found, not persisted. Indicates key is in RAM, but not persisted to disk
|
| FoundPersisted | 1 |
Found, persisted. Indicates key is found in RAM, and is persisted to disk
|
| NotFound | 128 |
Not found. Indicates the key is persisted, but not found in RAM. In this case,
a key is not available in any view/index. Couchbase Server will return this keystate
for any item that is not stored in the server. It indicates you will not expect to have
the item in a view/index.
|
| LogicalDeleted | 129 |
Logically deleted. Indicates an item is in RAM, but is not yet deleted from disk.
|
See Also