Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
please mark some of your questions as answered, and rephrase a little your question. This way, people will be a little more eager to help you. – Valentin Rocher Dec 28 '10 at 13:37
I am sorry.how I will mark questions answered? – UVM Dec 28 '10 at 13:39
you click on the "check" mark (looking a bit like a '√') and it will turn green (and you will gain reputation by accepting an answer). – SyntaxT3rr0r Dec 28 '10 at 13:40
click on the right mark , it will turn green for the answer which you feel the answer actually – Jigar Joshi Dec 28 '10 at 13:40
I got it already.DOne it.thanks – UVM Dec 28 '10 at 13:41

2 Answers

up vote 2 down vote accepted

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):

http://lmonson.com/blog/?page_id=99

share|improve this answer
I have the source code for Bloom filter algorithm Implemented in Cassandar framework. – UVM Dec 28 '10 at 13:47
But my concern is here how the space optimization happens here? – UVM Dec 28 '10 at 13:48
@UNNI: oh ok, didn't know that was your question... The article on Wikipedia has a section explaining how the space efficiency is achieved: en.wikipedia.org/wiki/Bloom_filter But it's a tradeoff where you agree to have some false positives in exchange for a more memory-efficient representation. – SyntaxT3rr0r Dec 28 '10 at 13:54
You are not absolved from the responsibility of checking the values. The bloom filter only reduces the number of values you need to check and it allows you to build an algorithm that is optimized for mostly correct values instead of not knowing. – Stephanie Page May 19 '11 at 14:56
I like this article about probabilisic data structures and amongst them the bloom filter. – Alban Jul 26 '12 at 14:35

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;

    import ie.ucd.murmur.MurmurHash;

    import java.util.BitSet;
    import java.util.Random;

    public class FastBloomFilter {

        private final BitSet bs;

        final int [] hashSeeds;

        final int capacity;

        public FastBloomFilter(int slots, int hashFunctions) {
            bs = new BitSet(slots);
            Random r = new Random(System.currentTimeMillis());
            hashSeeds = new int[hashFunctions];
            for (int i=0; i<hashFunctions; ++i) {
                hashSeeds[i] = r.nextInt();
            }
            capacity = slots;
        }

        public void add(int value) {
            byte [] b = new byte[] {
                    (byte)(value >>> 24),
                    (byte)(value >>> 16),
                    (byte)(value >>> 8),
                    (byte)value};
            for (int i=0; i<hashSeeds.length; ++i) {
                int h = MurmurHash.hash32(b, 4, hashSeeds[i]);
                bs.set(Math.abs(h)%capacity, true);
            }
        }

        public void clear() {
            bs.clear();
        }

        public boolean mightContain(int value) {
            byte [] b = new byte[] {
                    (byte)(value >>> 24),
                    (byte)(value >>> 16),
                    (byte)(value >>> 8),
                    (byte)value};
            for (int i=0; i<hashSeeds.length; ++i) {
                int h = MurmurHash.hash32(b, 4, hashSeeds[i]);

                if(!bs.get(Math.abs(h)%capacity)) {
                    return false;


            }

            return true;
        }


        public static void main(String [] args) {
            FastBloomFilter bf = new FastBloomFilter(1000, 10);
            System.out.println("Query for 2000: " + bf.mightContain(2000));
            System.out.println("Adding 2000");
            bf.add(2000);
            System.out.println("Query for 2000: " + bf.mightContain(2000));


        }
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.