in reply to Re: Any limit to large hashes?
in thread Any limit to large hashes?

If you have BerkeleyDB installed, slip this in at the beginning (where %seq_hash is whatever your big hash is):
use DB_File; tie(%seq_hash, "DB_File", "tmp.db", O_RDWR|O_CREAT);
This will be significantly slower, but should reduce the memory requirements drastically.