Cache::FastMmap

Uses an mmap'ed file to act as a shared memory interprocess cache
Download

Cache::FastMmap Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Rob Mueller
  • Publisher web site:
  • http://search.cpan.org/~robm/Mail-IMAPTalk-1.03/IMAPTalk.pm

Cache::FastMmap Tags


Cache::FastMmap Description

Uses an mmap'ed file to act as a shared memory interprocess cache Cache::FastMmap is a Perl module that uses an mmap'ed file to act as a shared memory interprocess cache.SYNOPSIS use Cache::FastMmap; # Uses vaguely sane defaults $Cache = Cache::FastMmap->new(); # $Value must be a reference... $Cache->set($Key, $Value); $Value = $Cache->get($Key); $Cache = Cache::FastMmap->new(raw_values => 1); # $Value can't be a reference... $Cache->set($Key, $Value); $Value = $Cache->get($Key);ABSTRACTA shared memory cache through an mmap'ed file. It's core is written in C for performance. It uses fcntl locking to ensure multiple processes can safely access the cache at the same time. It uses a basic LRU algorithm to keep the most used entries in the cache. Requirements: · Perl


Cache::FastMmap Related Software