| Apache-Mmap documentation | view source | Contained in the Apache-Mmap distribution. |
Apache::Mmap::Handle - Associates a file handle with a mmaped file
use Apache::Mmap::Handle (); tie *MMAP, 'Apache::Mmap::Handle', $filename, 'r'; print while( <MMAP> ); untie *MMAP;
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.
Mike Fletcher, lemur1@mindspring.com
Apache::Mmap module, mmap(2), perltie(1), perl(1).
| Apache-Mmap documentation | view source | Contained in the Apache-Mmap distribution. |