in reply to How can I process large files efficiently?

You could use Tie::File to bind an array to a file, and then perform searches on the array without loading the file into memory.

"The file is not loaded into memory, so this will work even for gigantic files."

Hope this helps

- Neil

  • Comment on Re: How can I process large files efficiently?