Interface: BloomFilterStats
@kortexya/reasoninglayer / Streaming / BloomFilterStats
Interface: BloomFilterStats
Defined in: src/types/streaming.ts:122
Bloom-filter configuration and load statistics after all insertions.
Properties
bitCount
bitCount:
number
Defined in: src/types/streaming.ts:124
Total bits in the filter.
estimatedLoad
estimatedLoad:
number
Defined in: src/types/streaming.ts:126
Fraction of bits set ∈ [0, 1]. Higher values increase the false-positive rate.
hashCount
hashCount:
number
Defined in: src/types/streaming.ts:128
Number of hash slots.
insertions
insertions:
number
Defined in: src/types/streaming.ts:130
Total calls to insert (including duplicate items).
setBits
setBits:
number
Defined in: src/types/streaming.ts:132
Bits set to true after all insertions.