NAME
Apache::Mmap::Handle - Associates a file handle with a mmaped file
SYNOPSIS
use Apache::Mmap::Handle ();
tie *MMAP, 'Apache::Mmap::Handle', $filename, 'r';
print while( <MMAP> );
untie *MMAP;
DESCRIPTION
Apache::Mmap::Handler
implements the TIEHANDLE
interface to allow tieing a filehandle to a file which has been mapped into memory using the Apache::Mmap
module.
AUTHOR
Mike Fletcher, lemur1@mindspring.com
SEE ALSO
Apache::Mmap module, mmap(2), perltie(1), perl(1).