IndexingMode enum

Specifies the supported indexing modes.

Fields

consistent

Index is updated synchronously with a create or update operation.

With consistent indexing, query behavior is the same as the default consistency level for the container. The index is always kept up to date with the data.

lazy

Index is updated asynchronously with respect to a create or update operation.

With lazy indexing, queries are eventually consistent. The index is updated when the container is idle.

none

No Index is provided.