Type alias PersistentIndex

PersistentIndex: GenericIndex & {
    cacheEnabled: boolean;
    deduplicate: boolean;
    estimates: boolean;
    fields: string[];
    selectivityEstimate: number;
    storedValues?: string[];
    type: "persistent";
}

An object representing a persistent index.

Type declaration

  • cacheEnabled: boolean
  • deduplicate: boolean
  • estimates: boolean
  • fields: string[]
  • selectivityEstimate: number
  • Optional storedValues?: string[]
  • type: "persistent"