Type alias PersistentIndexDescription

PersistentIndexDescription: IndexDescriptionType<"persistent", string[], {
    cacheEnabled: boolean;
    deduplicate: boolean;
    estimates: boolean;
    selectivityEstimate: number;
    storedValues?: string[];
}>

An object representing a persistent index.

Type declaration

  • cacheEnabled: boolean
  • deduplicate: boolean
  • estimates: boolean
  • selectivityEstimate: number
  • Optional storedValues?: string[]