active questions tagged bloom-filter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:45:37Z http://stackoverflow.com/feeds/tag/bloom-filter http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1703367/needed-an-efficient-way-for-search-for-the-following-specfic-requirement 1 Needed an efficient way for search for the following specfic requirement Reddy 2009-11-09T19:59:59Z 2009-11-09T21:11:51Z <p>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 names residing in the specified directory and then search each file name with the given keyword). Since I need to search very large number of keywords dynamically, its not efficient to search using regular. I had couple of ideas: </p> <p>1.using hashing (but not clear how to design it)</p> <p>2.Using Bloom Filters for searching (please google , if u dont know about it, its working is very interesting!): Problem in using bloom filters is "False positives are possible, but false negatives are not". I might miss some results....</p> http://stackoverflow.com/questions/1595280/a-few-qs-about-bloom-filter-implementation 0 A few Q's about Bloom Filter implementation Hangfire 2009-10-20T15:02:04Z 2009-10-20T15:02:04Z <p>Hello, I recently discovered a site that set certain code kata.</p> <p>One of the Kata caught my eye and set me looking into Bloom filters.</p> <p>I'm using PHP and MySql.</p> <p>I have a table with roughly 45,000 words to act as a dictionary and i've written the code to create a bloom filter array.</p> <p>My questions are...</p> <ol> <li><p>At what point should the code run to create the Bloom filter array a) When the user access the page b) Every time a search is run c) Just once by me and then stored for future use d) something else entirely</p></li> <li><p>How should I store the array a) Keep it in an array b) Write to a text file c) Create a new table and store it there d) something else entirely</p></li> </ol> <p>Any help from someone experienced with bloom filters would be a great help.</p> <p>Cheers Hangfire</p> http://stackoverflow.com/questions/1255004/compact-data-structure-like-set 4 compact data structure like set Andreas Petersson 2009-08-10T13:48:19Z 2009-08-10T13:56:13Z <p>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 :)</p> <p>basically, it is like a set - except you cannot iterate it.</p> <p>you put some values in it, lets say 80k zip codes.</p> <p>then you can test if a given string is definately NOT a zip code, but you will eventually get false positives if you insert too many zip codes.</p> <p>the memory consumption of this structure is quite small.</p> <p>what is its name, and is there an implementation in java?</p> http://stackoverflow.com/questions/635728/opposite-of-bloom-filter 1 Opposite of Bloom filter? abc 2009-03-11T18:18:01Z 2009-06-17T07:17:46Z <p>Hi,</p> <p>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 time running tests which I already ran if I can avoid it efficiently.</p> <p>So, I'm thinking about using a Bloom filter to store the tests which have been already ran. However, the Bloom filter errs on the unsafe side for me. It gives false positives. That is, it may report that I've ran a test which I haven't. Although this could be acceptable in the scenario I'm working on, I was wondering if there's an equivalent to a Bloom filter, but erring on the opposite side, that is, only giving false negatives.</p> <p>I've skimmed through the literature without any luck.</p> http://stackoverflow.com/questions/311202/modern-high-performance-bloom-filter-in-python 8 Modern, high performance bloom filter in Python? Parand 2008-11-22T10:53:57Z 2008-11-22T23:35:59Z <p>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). </p> <p><a href="http://www.imperialviolet.org/pybloom.html" rel="nofollow">Pybloom</a> is one option but it seems to be showing its age as it throws DeprecationWarning errors on Python 2.5 on a regular basis. Joe Gregorio also has <a href="http://bitworking.org/news/380/bloom-filter-resources" rel="nofollow">an implementation</a>. </p> <p>Requirements are fast lookup performance and stability. I'm also open to creating Python interfaces to particularly good c/c++ implementations, or even to Jython if there's a good Java implementation.</p> <p>Lacking that, any recommendations on a bit array / bit vector representation that can handle ~16E9 bits?</p>