Apache::Mmap::Handle - Associates a file handle with a mmaped file


Apache-Mmap documentation  | view source Contained in the Apache-Mmap distribution.

Index


NAME

Top

Apache::Mmap::Handle - Associates a file handle with a mmaped file

SYNOPSIS

Top

  use Apache::Mmap::Handle ();

  tie *MMAP, 'Apache::Mmap::Handle', $filename, 'r';
  print while( <MMAP> );
  untie *MMAP;

DESCRIPTION

Top

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

Top

Mike Fletcher, lemur1@mindspring.com

SEE ALSO

Top

Apache::Mmap module, mmap(2), perltie(1), perl(1).


Apache-Mmap documentation  | view source Contained in the Apache-Mmap distribution.