CHI::Driver::FastMmap
Persistent interprocess cache via mmap'ed files
- Provided by: libchi-perl (Version: 0.60-3)
- Report a bug
Persistent interprocess cache via mmap'ed files
version 0.60
use CHI;
my $cache = CHI->new(
driver => 'FastMmap',
root_dir => '/path/to/cache/root',
cache_size => '1m'
);
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 "raw_values" flag as 1; and to conform to the CHI API, we pass "unlink_on_exit" as 0, so that all cache files are permanent.
You will need to install Cache::FastMmap from CPAN to use this driver.
Any other constructor options not recognized by CHI are passed along to Cache::FastMmap->new.
$self->fm_cache->get_and_set("key", sub { ... });
CHI
Jonathan Swartz <swartz@pobox.com>
This software is copyright (c) 2012 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.