Using Bloom filter , we will be getting space optimization.But in reality, how it is achieved. The cassandra framework is such kind of frame work,if I am correct.
|
|
A bloom filter isn't a "framework". It's really more like simply an algorithm. The implementation ain't very long. Here's one in Java I've tried (.jar, source code and JavaDoc being all available): "Stand alone Java implementations of Cuckoo Hashing and Bloom Filters" (you may want to Google for this in case the following link ain't working anymore): |
|||||||||||
|
|
So I have seen this question before, and I used advice above and it turned out to be way to slow for me. So I wrote my own. It is not fully general, but I am sure if somebody is desperate for performance like I am they will make it more general by themselves :) I used Murmur hash implementation that you can download here: http://d3s.mff.cuni.cz/~holub/sw/javamurmurhash/ The code: package uk.ac.cam.cl.ss958.SpringBoardSimulation;
|
||||
|
|