Tagged Questions

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 ...
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 ...
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
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 ...
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 ...