File::Map
File::Map is a module that maps files or anonymous memory into perl variables.
Advantages of memory mapping
Advantages of this module over other similar modules
Safety and Speed
This module is safe yet fast. Alternatives are either fast but can cause
segfaults or loose the mapping when not used correctly, or are safe but
rather slow. File::Map is as fast as a normal string yet safe.
Simplicity
It offers a more simple interface targeted at common usage patterns
Portability
File::Map supports both Unix and Windows.
Thread synchronization
It has built-in support for thread synchronization.
INSTALLATION
To install this module, run the following commands:
perl Build.PL
./Build
./Build test
./Build install
SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the perldoc command.
perldoc File::Map
You can also look for information at:
RT, CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Map
AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/File-Map
CPAN Ratings
http://cpanratings.perl.org/d/File-Map
Search CPAN
http://search.cpan.org/dist/File-Map
COPYRIGHT AND LICENCE
Copyright (C) 2008 Leon Timmermans
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.