in reply to Memory consumption

Refactor part that eats memory my %hash = get_hash();, maybe with MLDBM (or DB_File), or DBD::SQLite... maybe just flatten so its simple => "hash \tof\tvalues"

Replies are listed 'Best First'.
Re^2: Memory consumption
by DrHyde (Prior) on May 06, 2009 at 10:25 UTC
    DBM::Deep is a better choice than MLDBM these days, as access to arbitrarily deeply buried data is far more transparent. To immediately address the OP's concerns, it is far more memory efficient than MLDBM too!
      Thank you, I couldn't remember the name and I was looking for it in DBD-