Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

jpantunes/jsbloom

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#jsbloom

A fast bloom filter implementation in JavaScript using the djb2 and sdbm algorithms. Uses a port of pieroxy's lz-string

From Less Hashing, Same Performance: Building a Better Bloom Filter by Adam Kirsch et al, it is possible to build k hash values from only 2 unique values. Hence, it is sufficient to have two unique hashes generated.

Usage

const filter = JSBloom(items, false_probability_chance);

filter.addEntry("xyz");

filter.checkEntry("xyz"); // returns true

filter.checkEntry("yz"); // returns false

Testing

Testing is done with mocha and chai

npm install mocha chai
mocha

Parameters

items: ceiling of entries to add
false_probability_chance: chance of false positives to occur, values between 0 and 1

JSBloom will automatically generate the needed bit array and amount of hashes needed to meet your requirements.

API reference

addEntry(str): adds str to bloom filter. expects typeof str === 'string'
addEntries(arr): iterates over arr and adds every entry within
checkEntry(str): checks if str in filter, returns false if definitely not, true if maybe
importData(base64, [number_of_hashes]): loads a base 64 LZW compressed Uint8Array
exportData(): returns base 64 encoded Uint8Array LZW as string
exportData(callback): returns the base 64 encoded Uint8Array LZW compressed to provided (optional) callback

About

bloom filter implementation for javascript

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.