Tagged Questions
Bloom filter is a probabilistic data structure that tells you if an element is a member of a set.
20
votes
6answers
4k views
Modern, high performance bloom filter in Python?
I'm looking for a production quality bloom filter implementation in Python to handle fairly large numbers of items (say 100M to 1B items with 0.01% false positive rate).
Pybloom is one option but it ...
17
votes
7answers
970 views
What problems have you solved using bloom filters?
I'd like to know about specific problems you - the SO reader - have solved using bloom filters and what libraries/frameworks you used if you didn't roll your own.
Questions:
What problems have you ...
12
votes
4answers
2k views
Need memory efficient way to store tons of strings (was: HAT-Trie implementation in java)
I am working with a large set (5-20 million) of String keys (average length 10 chars) which I need to store in an in memory data structure that supports the following operation in constant time or ...
9
votes
6answers
1k views
Opposite of Bloom filter?
I'm trying to optimize a piece of software which is basically running millions of tests. These tests are generated in such a way that there can be some repetitions. Of course, I don't want to spend ...
4
votes
2answers
114 views
Are any implementations of Bloomier filters available?
I've come across quite a bit of theory regarding Bloomier filters but have had no luck digging up an actual implementation of them (no luck at github, sourcefoge, google, etc.). Does anyone know of ...
4
votes
2answers
228 views
compact data structure like set
i am looking for a specific data structure, but i forgot its name. if i knew the name it would be trivial, i would just look it up in wikipedia :)
basically, it is like a set - except you cannot ...
3
votes
3answers
80 views
Testing Unpredictable Functions
I'm currently messing about with implementing interesting data structures in Ruby and have reached a problem with testing functions that do not have a predictable output. I'm currently working on a ...
2
votes
1answer
86 views
Does Cassandra uses Heap memory to store blooms filter ,and how much space does it consumes for 100GB of data?
I come to know that cassandra uses blooms filter for performance ,and it stores these filter data into physical-memory.
1)Where does cassandra stores this filters?(in heap memory ?)
2)How much ...
2
votes
2answers
48 views
Filter for range queries on a set
We have a set S of keys.
For membership queries (is k in S?), bloom filters often help us quickly determine that a key is not in the set.
How can we filter range queries (is there a key from the ...
2
votes
2answers
106 views
How do bloom filter implementations keep clean?
Since they fill up and the percentage of false positives increase, what are some of the techniques used to keep them from saturating? It seems like you cannot empty out bits, since that would make an ...
2
votes
1answer
189 views
Bloomfilter and Cassandra = Why used and why hashed several times?
I Read this:
http://spyced.blogspot.com/2009/01/all-you-ever-wanted-to-know-about.html
My Questions:
1.) Is it correct, that Cassandra only uses the bloom filter, to find out the SST (Sorted String ...
2
votes
3answers
924 views
Fast Bloom Filters in C- 64bit Ints, High frequency Initialize/Query/Destroy cyle
I need a bloom filter implementation, for a part of large project. The whole project is in C (and C only! no C++) and unfortunately, I have not been able to find any decent C based bloom filter ...
1
vote
1answer
64 views
Bloom filter design
I wanted to know where I can find an implementation of the Bloom filter, with some explanation about the choice of the hash functions.
Additionally I have the following questions:
1) the Bloom ...
1
vote
1answer
71 views
Why are bloom filters called “filters”?
Why are bloom filters called "filters". They behave more like sets, or at least an anoymous set that can be queried for membership. Where does filter come into it?
1
vote
2answers
40 views
Are overlapping sub-arrays of a byte array independent enough to use as hash function(s) for Bloom Filter?
I have the following question in the context of a BloomFilter. BloomFilters need to have k independent hash functions. Let's call these function h1, h2, ... hk. Independent in this context means ...
1
vote
1answer
188 views
When is a bloom filter useful
I understand what makes bloom filters an attractive data structure; however, I'm finding it difficult to really understand when you can use them since you still have to perform the expensive operation ...
1
vote
1answer
71 views
Combining Bloom Filters
I am using bloom filters to check for duplicated data in a set. However, there is a need to combine the results of two sets of data into a single filter to check for duplication across the two sets. ...
1
vote
3answers
565 views
What is the advantage to using bloom filters?
I am reading up on bloom filters and they just seem silly. Anything you can accomplish with a bloom filter, you could accomplish in less space, more efficiently, using a single hash function rather ...
1
vote
2answers
241 views
Using hash functions with Bloom filters
A bloom filter uses a hash function (or many) to generate a value between 0 and m given an input string X. My question is how to you use a hash function to generate a value in this way, for example an ...
1
vote
1answer
72 views
Needed an efficient way for search for the following specfic requirement
I have to search a given file name (let say Keyword) in a directory containing files. If there were only few keywords to be searched, I could have used regular search (like creating an array of file ...
0
votes
0answers
14 views
Bloom filter hash functions with an already well-distributed key
What is the best strategy for generating hash functions for a bloom filter when I already know my input key is a well-distributed uint64 (the first 8 bytes of a sha1 on some longer string)?
I've ...
0
votes
0answers
75 views
sql testing for a false positive rates
I am working on Postgresql-7.4.13 for my school project.
It requires to test a false positive rates when I join two tables and use a bloom filter.
Is there any efficient way to calculate a false ...
0
votes
2answers
53 views
Fast way to find the row associated with a given Guid across many SQL databases and tables
I have a number of SQL databases, each with plenty of tables. These predominantly have randomly generated Guids as row primary keys. I would like a way to locate the table and row data associated with ...
0
votes
1answer
100 views
Why Does a Bloom Filter Need Multiple Hash Functions?
I don't really understand why a bloom filter requires multiple hash functions (say, SHA and MD5).
Why not just make a bigger SHA hash, for example, and then break it up into multiple parts and treat ...
0
votes
1answer
116 views
How to find out the false positive rate of one implementation of bloom filter algorithm?
How can I find the false positive rate of one implementation of bloom filter algorithm?
0
votes
3answers
74 views
If I have an array of keys M, and an array of targets N, how can I verify that M[i] exists in N before searching it?
Like the title says, I'm trying to find elements of M that exist in the large constant array N. Most of the time, no element of M will exist in N, so the vast majority of searches done on M are a ...
0
votes
1answer
303 views
0
votes
1answer
613 views
A few Q's about Bloom Filter implementation
I recently discovered a site that set certain code kata.
One of the Kata caught my eye and set me looking into Bloom filters.
I'm using PHP and MySql.
I have a table with roughly 45,000 words to ...