in reply to storing a huge text file into a hash

Angharad:

With that much data, I'd suggest putting it in a DBM file (AnyDBM_File or similar) or a database (DBI with DBD::SQLite) would give you a couple of advantages:

...roboticus

When your only tool is a hammer, all problems look like your thumb.

  • Comment on Re: storing a huge text file into a hash

Replies are listed 'Best First'.
Re^2: storing a huge text file into a hash
by Angharad (Pilgrim) on Dec 07, 2010 at 19:17 UTC
    Ok, thanks for the advice. I've decided to store the data in a database and query it as required :)