Defined in: packages/db/src/indexes/btree-index.ts:35
B+Tree index for sorted data with range queries This maintains items in sorted order and provides efficient range operations
BaseIndex<TKey>
TKey extends string | number = string | number
new BTreeIndex<TKey>(
id,
expression,
name?,
options?): BTreeIndex<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:55
number
string
any
BTreeIndex<TKey>
protected compareOptions: CompareOptions;Defined in: packages/db/src/indexes/base-index.ts:101
readonly expression: BasicExpression;Defined in: packages/db/src/indexes/base-index.ts:95
protected hasCustomComparator: boolean = false;Defined in: packages/db/src/indexes/base-index.ts:106
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:93
protected lastUpdated: Date;Defined in: packages/db/src/indexes/base-index.ts:100
protected lookupCount: number = 0;Defined in: packages/db/src/indexes/base-index.ts:98
readonly optional name: string;Defined in: packages/db/src/indexes/base-index.ts:94
readonly supportedOperations: Set<"eq" | "gt" | "gte" | "lt" | "lte" | "in" | "like" | "ilike">;Defined in: packages/db/src/indexes/btree-index.ts:38
protected totalLookupTime: number = 0;Defined in: packages/db/src/indexes/base-index.ts:99
get indexedKeysSet(): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:410
Set<TKey>
get keyCount(): number;Defined in: packages/db/src/indexes/btree-index.ts:214
Gets the number of indexed keys
number
get orderedEntriesArray(): [any, Set<TKey>][];Defined in: packages/db/src/indexes/btree-index.ts:414
[any, Set<TKey>][]
get orderedEntriesArrayReversed(): [any, Set<TKey>][];Defined in: packages/db/src/indexes/btree-index.ts:423
[any, Set<TKey>][]
BaseIndex.orderedEntriesArrayReversed
get supportsRangeOptimization(): boolean;Defined in: packages/db/src/indexes/base-index.ts:161
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
get valueMapData(): Map<any, Set<TKey>>;Defined in: packages/db/src/indexes/btree-index.ts:430
Map<any, Set<TKey>>
add(key, item): void;Defined in: packages/db/src/indexes/btree-index.ts:84
Adds a value to the index
TKey
any
void
build(entries): void;Defined in: packages/db/src/indexes/btree-index.ts:158
Builds the index from a collection of entries
Iterable<[TKey, any]>
void
clear(): void;Defined in: packages/db/src/indexes/btree-index.ts:169
Clears all data from the index
void
equalityLookup(value): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:223
Performs an equality lookup
any
Set<TKey>
protected evaluateIndexExpression(item): any;Defined in: packages/db/src/indexes/base-index.ts:212
any
any
BaseIndex.evaluateIndexExpression
getStats(): IndexStats;Defined in: packages/db/src/indexes/base-index.ts:200
inArrayLookup(values): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:395
Performs an IN array lookup
any[]
Set<TKey>
protected initialize(_options?): void;Defined in: packages/db/src/indexes/btree-index.ts:79
BTreeIndexOptions
void
lookup(operation, value): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:179
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:177
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:196
Checks if the index matches the provided direction.
boolean
matchesField(fieldPath): boolean;Defined in: packages/db/src/indexes/base-index.ts:165
string[]
boolean
rangeQuery(options): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:232
Performs a range query with options This is more efficient for compound queries like "WHERE a > 5 AND a < 10"
Set<TKey>
rangeQueryReversed(options): Set<TKey>;Defined in: packages/db/src/indexes/btree-index.ts:279
Performs a reversed range query
Set<TKey>
remove(key, item): void;Defined in: packages/db/src/indexes/btree-index.ts:115
Removes a value from the index
TKey
any
void
supports(operation): boolean;Defined in: packages/db/src/indexes/base-index.ts:157
"eq" | "gt" | "gte" | "lt" | "lte" | "in" | "like" | "ilike"
boolean
take(
n,
from,
filterFn?): TKey[];Defined in: packages/db/src/indexes/btree-index.ts:341
Returns the next n items after the provided item.
number
The number of items to return
any
The item to start from (exclusive).
(key) => boolean
TKey[]
The next n items after the provided key.
takeFromStart(n, filterFn?): TKey[];Defined in: packages/db/src/indexes/btree-index.ts:354
Returns the first n items from the beginning.
number
The number of items to return
(key) => boolean
Optional filter function
TKey[]
The first n items
takeReversed(
n,
from,
filterFn?): TKey[];Defined in: packages/db/src/indexes/btree-index.ts:366
Returns the next n items before the provided item (in descending order).
number
The number of items to return
any
The item to start from (exclusive). Required.
(key) => boolean
TKey[]
The next n items before the provided key.
takeReversedFromEnd(n, filterFn?): TKey[];Defined in: packages/db/src/indexes/btree-index.ts:383
Returns the last n items from the end.
number
The number of items to return
(key) => boolean
Optional filter function
TKey[]
The last n items
protected trackLookup(startTime): void;Defined in: packages/db/src/indexes/base-index.ts:217
number
void
update(
key,
oldItem,
newItem): void;Defined in: packages/db/src/indexes/btree-index.ts:150
Updates a value in the index
TKey
any
any
void
protected updateTimestamp(): void;Defined in: packages/db/src/indexes/base-index.ts:223
void