File::Map
File::Map is a module that maps files or anonymous memory into perl variables.
Advantages of memory mapping
* Unlike normal perl variables, mapped memory is shared between
threads or forked processes.
* It is an efficient way to slurp an entire file. Unlike for example
File::Slurp, this module returns almost immediately, loading the
pages lazily on access. Th
more»
#!perl
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
}
# This test is generated by Dist::Zilla::Plugin::Test::Kwalitee
use strict;
use warnings;
use Test::More; # needed to provide plan.
eval "use Test::Kwalitee";
plan skip_all => "Test::Kwalitee required for testing kwalitee" if $@;
This software is copyright (c) 2008, 2009, 2010, 2011 by Leon Timmermans
<leont@cpan.org>.
This is
more»