|
|
|
|
|
by bane
3276 days ago
|
|
You can get lots of mileage out of bloom filters as well by just using them off of disk. If you're smart about it and use mmap'd files, you only ever end up reading a few bytes at a time. On modern SSDs you can get some really incredible performance not too far off using them in RAM, or you can use a bunch of them for a simple classifier. here's an implementation: https://axiak.github.io/pybloomfiltermmap/ |
|