Schema for find query execution statistics.

interface ExecutionStats {
    execution_time_ms: number;
    results_returned: number;
    total_docs_examined: number;
    total_keys_examined: number;
    total_quorum_docs_examined: number;
}

Properties

execution_time_ms: number

Time to execute the query.

results_returned: number

Number of results returned.

total_docs_examined: number

Number of documents fetched from the index.

total_keys_examined: number

Number of rows scanned in the index.

total_quorum_docs_examined: number

Number of documents fetched from the primary index with the specified read quorum.

Generated using TypeDoc