/usr/share/perl5/CHI/Driver/FastMmap.pm is in libchi-perl 0.50-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | package CHI::Driver::FastMmap;
BEGIN {
$CHI::Driver::FastMmap::VERSION = '0.50';
}
use Carp;
use Cache::FastMmap;
use CHI::Util qw(read_dir);
use File::Path qw(mkpath);
use File::Spec::Functions qw(catdir catfile splitdir tmpdir);
use Moose;
use strict;
use warnings;
extends 'CHI::Driver::Base::CacheContainer';
has 'dir_create_mode' => ( is => 'ro', isa => 'Int', default => oct(775) );
has 'root_dir' => ( is => 'ro', isa => 'Str', default => catdir( tmpdir(), "chi-driver-fastmmap" ) );
__PACKAGE__->meta->make_immutable();
sub BUILD {
my ( $self, $params ) = @_;
mkpath( $self->root_dir, 0, $self->dir_create_mode )
if !-d $self->root_dir;
$self->{fm_params} = {
raw_values => 1,
unlink_on_exit => 0,
share_file => catfile(
$self->root_dir,
$self->escape_for_filename( $self->namespace ) . ".dat"
),
%{ $self->non_common_constructor_params($params) },
};
$self->{_contained_cache} = $self->_build_contained_cache;
}
sub _build_contained_cache {
my ($self) = @_;
return Cache::FastMmap->new( %{ $self->{fm_params} } );
}
sub fm_cache {
my $self = shift;
return $self->_contained_cache(@_);
}
sub get_keys {
my ($self) = @_;
my @keys = $self->_contained_cache->get_keys(0);
return @keys;
}
sub get_namespaces {
my ($self) = @_;
my $root_dir = $self->root_dir;
my @contents = read_dir($root_dir);
my @namespaces =
map { $self->unescape_for_filename( substr( $_, 0, -4 ) ) }
grep { /\.dat$/ } @contents;
return @namespaces;
}
# Capture set failures
sub store {
my $self = shift;
my $result = $self->_contained_cache->set(@_);
if ( !$result ) {
my ( $key, $value ) = @_;
croak(
sprintf( "fastmmap set failed - value too large? (%d bytes)",
length($value) )
);
}
}
1;
=pod
=head1 NAME
CHI::Driver::FastMmap - Persistent interprocess cache via mmap'ed files
=head1 VERSION
version 0.50
=head1 SYNOPSIS
use CHI;
my $cache = CHI->new(
driver => 'FastMmap',
root_dir => '/path/to/cache/root',
cache_size => '1m'
);
=head1 DESCRIPTION
This cache driver uses Cache::FastMmap to store data in an mmap'ed file. It is
very fast, and can be used to share data between processes on a single host,
though not between hosts.
To support namespaces, this driver takes a directory parameter rather than a
file, and creates one Cache::FastMMap file for each namespace.
Because CHI handles serialization automatically, we pass the C<raw_values> flag
as 1; and to conform to the CHI API, we pass C<unlink_on_exit> as 0, so that
all cache files are permanent.
=head1 REQUIREMENTS
You will need to install L<Cache::FastMmap|Cache::FastMmap> from CPAN to use
this driver.
=head1 CONSTRUCTOR OPTIONS
=over
=item root_dir
Path to the directory that will contain the share files, one per namespace.
Defaults to a directory called 'chi-driver-fastmmap' under the OS default temp
directory (e.g. '/tmp' on UNIX).
=item dir_create_mode
Permissions mode to use when creating directories. Defaults to 0775.
=back
Any other constructor options L<not recognized by CHI|CHI/constructor> are
passed along to L<Cache::FastMmap-E<gt>new>.
=head1 METHODS
=over
=item fm_cache
Returns a handle to the underlying Cache::FastMmap object. You can use this to
call FastMmap-specific methods that are not supported by the general API, e.g.
$self->fm_cache->get_and_set("key", sub { ... });
=back
=head1 SEE ALSO
L<CHI|CHI>
=head1 AUTHOR
Jonathan Swartz <swartz@pobox.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
__END__
|