nickva / iblt

Erlang IBLT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invertible Bloom Lookup Tables

This is the IBLT implementation extracted from Scalaris

IBLT description can be found here

Building

rebar3 compile

Trying it out

rebar3 shell
>
  I = iblt:new(5, 100),
  I2 = iblt:insert(I, <<"abc">>, 42),
  I3 = iblt:insert(I2, <<"def">>, 9000),
  iblt:list_entries(I3).

[{<<"abc">>,42},{<<"def">>,9000}]

About

Erlang IBLT

License:Apache License 2.0


Languages

Language:Erlang 100.0%