Schema for metadata information about a search index.

interface SearchIndexInfo {
    committed_seq: number;
    disk_size: number;
    doc_count: number;
    doc_del_count: number;
    pending_seq: number;
    signature: string;
}

Properties

committed_seq: number

The committed sequence identifier.

disk_size: number

The size of the search index on disk.

doc_count: number

The count of the number of indexed documents.

doc_del_count: number

The number of deleted documents.

pending_seq: number

The pending sequence identifier.

signature: string

Unique signature of the search index.

Generated using TypeDoc