in reply to Re: Read File Backword
in thread Read File Backword

Thanks for the super quick response. Does this mean that all the file is read into memory before we can access
$ray[$#ray]
If this is the case for extremely large files 1GB, I may have a problem.

Replies are listed 'Best First'.
Re^3: Read File Backword
by pg (Canon) on Jul 27, 2004 at 19:50 UTC

    No. I read the source code before. It only reads in lines when it is needed, besides it deletes lines from memory when the buffer overflows. Memory is not a concern for that module.