Store it across multiple database computers, liek google

, think its called shadowing
for example
send to database one: select * from hash_list where hash = $hash
send to database two: select * from hash_list where hash = $hash
send to database three: select * from hash_list where hash = $hash
send to database four: select * from hash_list where hash = $hash
fi any of these return a value of one youve foudn a duplicate
send to hash database:
insert into duplicate_hashs(hash,value) values($hash,$value)
while $no_more_duplicates != true
{
update into the duplicate hashs all the ones (1,2,3,4) where duplicates were found
}
Alec