Skip to content

Commit ad7c2ba

Browse files
wenkokkejorisdral
andauthored
Update lsm-tree.cabal
Co-authored-by: Joris Dral <[email protected]>
1 parent 3c9c397 commit ad7c2ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsm-tree.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ description:
331331
which balances the performance of lookups against the in-memory size of the table.
332332

333333
Tables maintain a [Bloom filter](https://en.wikipedia.org/wiki/Bloom_filter) in memory for each run on disk.
334-
These Bloom filters are probablilistic datastructure that are used to track which keys are present in their corresponding run.
334+
These Bloom filters are probablilistic datastructures that are used to track which keys are present in their corresponding run.
335335
Querying a Bloom filter returns either \"maybe\" meaning the key is possibly in the run or \"no\" meaning the key is definitely not in the run.
336336
When a query returns \"maybe\" while the key is /not/ in the run, this is referred to as a /false positive/.
337337
While the database executes a lookup operation, any Bloom filter query that returns a false positive causes the database to unnecessarily read a page from disk.

0 commit comments

Comments
 (0)