npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bloem

v0.2.4

Published

Bloom Filter using the FNV hash function

Downloads

6,337

Readme

Bloem - Bloom Filter for node.js

Bloem implements three Bloom Filters for node.js. All use the FNV Hash function and the optimization described in [1] by Kirsch and Mitzenmacher.

  • Bloem, a classic bloom filter dimensioned by the size of the bitfield and the number of hash functions
  • SafeBloem, enforces a given false positive error probabilty for a given capacity
  • ScalingBloem, a scaling bloom filter (SBF) as described by Almeida et al. in [2]

Install

npm install bloem

Usage

Bloem

var bloem = require('bloem')
var filter = new bloem.Bloem(16, 2)
filter.has(Buffer("foobar")) // false
filter.add(Buffer("foobar"))
filter.has(Buffer("foobar")) // true
filter.has(Buffer("hello world")) // false

SafeBloem

var bloem = require('bloem')
var filter = new bloem.SafeBloem(2, 0.1)
filter.add(Buffer("1")) // true
filter.add(Buffer("2")) // true
filter.add(Buffer("3")) // false

filter.has(Buffer("3")) // false
filter.has(Buffer("1")) // true

API

Class: Bloem

new Bloem(size, slices)
  • size Number - bits in the bitfield
  • slices Number - how many hashfunctions to use

Create a new Bloem filter object.

filter.add(key)
  • key Buffer - key to add

Add a key to the set

filter.has(key)
  • key Buffer

Test if key is in the set

Class: SafeBloem

new SafeBloem(capacity, error_rate)
  • capacity Number - capacity of the filter
  • error_rate Number

Create a new bloom filter that can hold capacity elements with an error probability of error_rate.

filter.add(key)
  • key Buffer - key to add

Add a key to the set. Returnes true on success and false if the filter is full.

filter.has(key)
  • key Buffer

Test if key is in the set

Class: ScalingBloem

new ScalingBloem(error_rate, options)
  • error_rate Number

Creates an instance of a scaling bloom filter. Accepts a "options" Object that takes the following values:

  • initial_capacity - the capacity of the first filter. Default: 1000
  • scaling - the scaling factor. Use 2 here for less space usage but higher cpu usage or 4 for higher space, but lower cpu usage. Default: 2
  • ratio - tightening ratio with 0 < ratio < 1. Default: 0.9
filter.add(key)
  • key Buffer - key to add

Add a key to the set

filter.has(key)
  • key Buffer

Test if key is in the set

References