This is the IBLT implementation extracted from Scalaris
IBLT description can be found here
rebar3 compile
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}]