top | item 24052316

(no title)

relate | 5 years ago

You could allow for errors and use a bloom filter to avoid the space issue:

https://en.wikipedia.org/wiki/Bloom_filter

discuss

order

StavrosK|5 years ago

Or you could use a privacy-preserving lookup API, but that might be too much traffic. A Bloom filter could be downloaded locally and is probably a better solution.

waterhouse|5 years ago

Bloom filter as first pass and then privacy-preserving lookup API if it returns "probably a match"?