Bloom filter is a probabilistic data structure that tells you if an element is a member of a set.

learn more… | top users | synonyms

0
votes
2answers
18 views

How can Bloom Filters help in determining if URL already crawled?

I keep hearing about how Bloom Filters can be useful in web crawling, especially in determining whether an URL has already been crawled(since a Bloom Filter is memory-efficient in testing for set ...
0
votes
1answer
34 views

Efficient way of creating a bit matrix and scan set columns

This is my current problem, I have a number of Bloom filters which I wanted to construct into a matrix, say: [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1] [1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0] ... [1, 1, ...
0
votes
0answers
86 views

Bloom Filter: evaluating false positive rate

Given a fixed number of bits (eg. slot) (m) and a fixed number of hash function (k), how one compute the theoretical false positive rate (p) ? According to Wikipedia ...
1
vote
0answers
290 views

what is twitter's interest in abstract algebra? [closed]

Why would a company like Twitter be interest in algebraic concepts like groups, monoids and rings. https://github.com/twitter/algebird All I could find is: Implementations of Monoids for ...
3
votes
3answers
267 views

Bloom filter usage

I am struggling to understand the usefulness of the bloom filter. I get its underlying logic, space compaction, fast lookups, false positives etc. I just cannot put that concept into a real-life ...
2
votes
4answers
123 views

Subset calculation of list of integers

I'm currently implementing an algorithm where one particular step requires me to calculate subsets in the following way. Imagine I have sets (possibly millions of them) of integers. Where each set ...
2
votes
1answer
121 views

C++ Storing a dynamic_bitset into a file

Sort of a follow up to How does one store a vector<bool> or a bitset into a file, but bit-wise? Basically I am writing a bitset as a binary file with the follow code: ...
2
votes
1answer
210 views

Difference bloom filters and FM-sketches

What is the difference between bloom filters and hash sketches (also FM-sketches) and what is their use?
2
votes
1answer
156 views

Is there any probabilistic data structure that gives false negatives but not false positives?

I need a space efficient probabilistic data structure to store values that I have already computed. For me computation is cheap but space is not - so if this data structure returns a false negative, I ...
0
votes
1answer
67 views

False positive rate in Bloom Filter

One quick question regarding Bloom Filter, If I allocate the size of Bloom filter exactly same as that of number of elements going to be inserted and also using unique hash functions, can I ensure ...
0
votes
2answers
268 views

Multiplication of 2 positive numbers giving a negative result [duplicate]

Possible Duplicate: How does Java handle integer underflows and overflows and how would you check for it? Multiplication of two int’s gets negativ My program is an implementation of a ...
1
vote
1answer
123 views

Generating md5 and checking for collision

I need to generate md5 hash for ~40 millions strings with salt (~20 symbols), md5 (string + salt) check for collisions then save them into bd. Then when salt is changed i need to generate new hashes ...
0
votes
1answer
224 views

Are there any good Counting Bloom Filter implementations in Java?

I'm looking for Counting Bloom Filter implementations in Java. I found the Hadoop implementation but as far as I can tell it lacks functionality to increase and decrease the count of a member. If it ...
0
votes
0answers
176 views

Is there an open source implementation of the quotient filter?

See http://en.wikipedia.org/wiki/Quotient_filter . I did not find a single implementation yet, and I'd like something to play with, the Wikipedia explanation is a little dry for my taste.
6
votes
1answer
146 views

How to map hashfunction output to bloomfilter indices?

Can anyone help me by providing an outline on how the hash function output is mapped to bloom filter indices? Here is an overview on bloomfilters.
0
votes
0answers
193 views

MD5 Hashing in Bloom Filter implementation

I am new to Java and practicing it, i am solving the CodeKata 5 (spell checker) using bloom filters. I need some advise on using Hash functions , I decided to use MD5 hashing as suggested on the site ...
4
votes
4answers
914 views

Efficient implementation of a Bloom filter in C?

This question has been asked previously but there was no answer for it at that time so I decided to ask it again. I need an efficient implementation of a Bloom filter in C (not C++). If there is no ...
2
votes
3answers
297 views

How to mask ints using bitwise operators

I was wondering if there is a way to mask a list of int values using bitwise operators, and using that mask to know if a int value is one of the values that are in the mask. i.e. if I have the values ...
2
votes
1answer
175 views

what am i doing wrong in this bloom filter implementation?

I have this bit table for a segmented bloom filter. Here every column is managed by a single hash function. unsigned char bit_table_[ROWS][COLUMNS];//bit_table now have 8*ROWS*COLUMNS bits unsigned ...
4
votes
1answer
263 views

Near Duplicate Detection in Data Streams

I am currently working on a streaming API that generates a lot of textual content. As expected, the API gives out a lot of duplicates and we also have a business requirement to filter near duplicate ...
7
votes
2answers
773 views

What hashing techniques to use when building a bloom filter in clojure?

I want to build a bloom filter in Clojure but I don't have much knowledge of all the hashing libraries that may be available to JVM based languages. What should I use for the fastest (as opposed to ...
0
votes
4answers
137 views

What is really happen (actual process) when we hash a particular string or word

Hi am trying to develop a counting bloom filter in java. i really searched most of the sources about the bloom filter.. The thing i understood is when we hash (do hashing) the particular string or ...
5
votes
1answer
137 views

Bloom filter to store the last 50 data content alone

Hi in my system there will be one master node and n number slave nodes, Where the master node will distribute the incoming request to one of its slave node. In order to make use of cache memory ...
-3
votes
1answer
384 views

universal hash function implementation for bloom filters in C

im simulating set intersection approximation using bloom filters. i have tried a lot of simple hash functions to hash the values to the filter. but its not good at avoiding collisions. so somebody ...
1
vote
1answer
174 views

Calculating the right number of bits in a bloom filter

I'm trying to make a configurable bloom filter. In the constructor you set the predicted necessary capacity of the filter (n), the desired error rate (p), and a list of hash functions (of size k). ...
11
votes
2answers
274 views

Computing the approximate population of a bloom filter

Given a bloom filter of size N-bits and K hash functions, of which M-bits (where M <= N) of the filter are set. Is it possible to approximate the number of elements inserted into the bloom filter? ...
1
vote
1answer
340 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 ...
3
votes
3answers
113 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
362 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
3answers
176 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
351 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 ...
1
vote
2answers
192 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
116 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 ...
0
votes
2answers
140 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
316 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 ...
5
votes
2answers
246 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 ...
1
vote
1answer
503 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
2answers
316 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. ...
4
votes
1answer
742 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 ...
3
votes
3answers
2k 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 ...
4
votes
3answers
2k 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 ...
0
votes
3answers
80 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 ...
1
vote
2answers
587 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 ...
0
votes
1answer
648 views

How to implement a Bloom Filter in PHP?

Is there an already cooked php solution?
17
votes
4answers
4k 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 ...
1
vote
1answer
82 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
1answer
886 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 ...
5
votes
2answers
334 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 ...
17
votes
8answers
3k 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 ...
26
votes
7answers
6k 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 ...