http://www.perlmonks.org?node_id=931336


in reply to Re^2: Iterating through Two Arrays. Is there a better use of memory?
in thread Iterating through Two Arrays. Is there a better use of memory?

Back in the day, I made a traveling salesman problem solver which used Perl hashes to reduce the search space. The script started using gigabytes of memory once you got above a few million hash keys. If you're dealing with thousands of items, I wouldn't worry unless you're in a low-memory environment.
My mission: To boldy split infinitives that have never been split before!
  • Comment on Re^3: Iterating through Two Arrays. Is there a better use of memory?

Replies are listed 'Best First'.
Re^4: Iterating through Two Arrays. Is there a better use of memory?
by Jeri (Scribe) on Oct 13, 2011 at 17:32 UTC
    Great! I will use a hash!