Best filter for MANET

126 views Asked by At

I know about Bloom filter.

It is very useful where storage requirement is less and where we need to check only whether element is "definitely not exist" or "may exist" e.g. mobile devices, browser in-memory.

As Best example given by Tarun

I need to know at least 2/3 better & faster filter than bloom filter where there is less storage required?

I need a filter or any better technique than bloom filter which can be useful in Mobile ad hoc network for storing device ip addresses and identifying address collisions.

1

There are 1 answers

3
cabad On

Not that much better than a Bloom Filter, but you can take a look into Cuckoo Filters. However, it will be harder for you to find an open source implementation; here is one in Go.

Citing from the original Cuckoo Filter paper:

Cuckoo filters improve upon Bloom filters in three ways: (1) support for deleting items dynamically; (2) better lookup performance; and (3) better space efficiency for applications requiring low false positive rates ( < 3%).