in reply to Re^2: Fastest way to merge (and de-dup) two large arrays?
in thread Fastest way to merge (and de-dup) two large arrays?

On a *nix system, I would try writing both arrays out to the same file and run

sort -u

on the file. Might be faster, might not...