Tagged Questions
1
vote
2answers
244 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
17 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
1answer
105 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 ...