dzhocwebber2: wouldn't a bloom filter be used in a multipass approach? Narrow the set of possible positives, but do a more exacting search only on that set?
cwebber2dzho: a bloom filter is just a sizable bytevector, where hashes are made to the size of that large bytevector, and then are bitwise OR'ed into a union where each 1 is where *any* member of the set had a 1 in its hash and a 0 is where no members had a 1
cwebber2 - you could do a multipass approach, but then you'd still to keep track of all the delieverable members, in which case you're sending and tracking that data anyway... what are you gaining?