Defined in: packages/db/src/indexes/basic-index.ts:45
Basic index using Map + sorted Array.
Simpler and smaller than BTreeIndex, good for read-heavy workloads. Use BTreeIndex for write-heavy workloads with large collections.
TKey extends string | number = string | number
new BasicIndex<TKey>(
id,
expression,
name?,
options?): BasicIndex<TKey>;Defined in: packages/db/src/indexes/basic-index.ts:66
number
string
any
BasicIndex<TKey>
protected compareOptions: CompareOptions;Defined in: packages/db/src/indexes/base-index.ts:122
readonly expression: BasicExpression;Defined in: packages/db/src/indexes/base-index.ts:120
protected hasCustomComparator: boolean = false;Defined in: packages/db/src/indexes/base-index.ts:128
Set by subclasses when constructed with a user-supplied comparator, whose ordering may not match the WHERE evaluator's relational operators.
readonly id: number;Defined in: packages/db/src/indexes/base-index.ts:118
readonly optional name: string;Defined in: packages/db/src/indexes/base-index.ts:119
readonly supportedOperations: Set<"eq" | "gt" | "gte" | "lt" | "lte" | "in" | "like" | "ilike">;Defined in: packages/db/src/indexes/basic-index.ts:48
get keyCount(): number;Defined in: packages/db/src/indexes/basic-index.ts:294
Gets the number of indexed keys
number
get supportsRangeOptimization(): boolean;Defined in: packages/db/src/indexes/base-index.ts:193
Whether range lookups (gt/gte/lt/lte) on this index can be trusted to return every matching key. Range traversal relies on the index ordering, so it is unsafe when the index uses a custom comparator, whose order may not match the WHERE evaluator's relational operators. Callers must fall back to a full scan when this is false.
boolean
BaseIndex.supportsRangeOptimization
add(key, item): void;Defined in: packages/db/src/indexes/basic-index.ts:85
Adds a value to the index
TKey
any
void
protected addRangeValue(value): void;Defined in: packages/db/src/indexes/base-index.ts:197
unknown
void
build(entries): void;Defined in: packages/db/src/indexes/basic-index.ts:217
Builds the index from a collection of entries
Iterable<[TKey, any]>
void
canOptimizeRangeFor(value): boolean;Defined in: packages/db/src/indexes/base-index.ts:219
Whether the live values in this index share the predicate operand's relational domain. Mixed domains can sort differently in the index and WHERE evaluator, which can make a range lookup omit matching rows.
unknown
boolean
clear(): void;Defined in: packages/db/src/indexes/basic-index.ts:253
Clears all data from the index
void
protected clearRangeValues(): void;Defined in: packages/db/src/indexes/base-index.ts:215
void
equalityLookup(value): Set<TKey>;Defined in: packages/db/src/indexes/basic-index.ts:301
Performs an equality lookup - O(1)
any
Set<TKey>
protected evaluateIndexExpression(item): any;Defined in: packages/db/src/indexes/base-index.ts:276
any
any
BaseIndex.evaluateIndexExpression
inArrayLookup(values): Set<TKey>;Defined in: packages/db/src/indexes/basic-index.ts:471
Performs an IN array lookup - O(k) where k is values.length
any[]
Set<TKey>
protected initialize(_options?): void;Defined in: packages/db/src/indexes/basic-index.ts:80
void
lookup(operation, value): Set<TKey>;Defined in: packages/db/src/indexes/basic-index.ts:263
Performs a lookup operation
"eq" | "gt" | "gte" | "lt" | "lte" | "in" | "like" | "ilike"
any
Set<TKey>
matchesCompareOptions(compareOptions): boolean;Defined in: packages/db/src/indexes/base-index.ts:241
Checks if the compare options match the index's compare options. The direction is ignored because the index can be reversed if the direction is different.
CompareOptions
boolean
BaseIndex.matchesCompareOptions
matchesDirection(direction): boolean;Defined in: packages/db/src/indexes/base-index.ts:270
Checks if the index matches the provided direction.
boolean
matchesField(fieldPath): boolean;Defined in: packages/db/src/indexes/base-index.ts:229
string[]
boolean
rangeQuery(options): Set<TKey>;Defined in: packages/db/src/indexes/basic-index.ts:309
Performs a range query using binary search - O(log n + m)
RangeQueryOptions = {}
Set<TKey>
rangeQueryReversed(options): Set<TKey>;Defined in: packages/db/src/indexes/base-index.ts:175
Set<TKey>
remove(key, item): void;Defined in: packages/db/src/indexes/basic-index.ts:126
Removes a value from the index
TKey
any
void
protected removeRangeValue(value): void;Defined in: packages/db/src/indexes/base-index.ts:206
unknown
void
supports(operation): boolean;Defined in: packages/db/src/indexes/base-index.ts:189
"eq" | "gt" | "gte" | "lt" | "lte" | "in" | "like" | "ilike"
boolean
take(
n,
from,
filterFn?): TKey[];Defined in: packages/db/src/indexes/basic-index.ts:373
Returns the next n items in sorted order
number
any
(key) => boolean
TKey[]
takeFromStart(n, filterFn?): TKey[];Defined in: packages/db/src/indexes/basic-index.ts:420
Returns the first n items in sorted order (from the start)
number
(key) => boolean
TKey[]
takeReversed(
n,
from,
filterFn?): TKey[];Defined in: packages/db/src/indexes/basic-index.ts:394
Returns the next n items in reverse sorted order
number
any
(key) => boolean
TKey[]
takeReversedFromEnd(n, filterFn?): TKey[];Defined in: packages/db/src/indexes/basic-index.ts:427
Returns the first n items in reverse sorted order (from the end)
number
(key) => boolean
TKey[]
update(
key,
oldItem,
newItem): void;Defined in: packages/db/src/indexes/basic-index.ts:183
Updates a value in the index
TKey
any
any
void