Tagged Questions

1
vote
1answer
32 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 creati …
0
votes
0answers
23 views

A few Q’s about Bloom Filter implementation

Hello, 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 …
4
votes
2answers
91 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 - ex …
1
vote
4answers
229 views

Opposite of Bloom filter?

Hi, 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, …
8
votes
2answers
904 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 …