Y
Hacker News
new
|
ask
|
show
|
jobs
by
StavrosK
5013 days ago
Why not use a bloom filter?
2 comments
vidarh
5012 days ago
The main benefit of Bloom filters is that they can be made
small
. Given that his database takes only 70MB or so and he's not trying to ship this to devices that might have much in terms of space limitations, there would appear to be little point.
link
StavrosK
5012 days ago
Eh, true, I guess redis is sufficiently awesome.
link
genwin
5012 days ago
Maybe because of this fact (according to Wikipedia)?: "The more elements that are added to the set, the larger the probability of false positives."
link
StavrosK
5012 days ago
That depends on its size, though. You can make it larger and get fewer false positives.
link