libcache-mmap-perl 0.11-1build3 source package in Ubuntu

Changelog

libcache-mmap-perl (0.11-1build3) trusty; urgency=low

  * Rebuild for Perl 5.18.
 -- Colin Watson <email address hidden>   Mon, 21 Oct 2013 09:48:43 +0100

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Trusty
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl

Downloads

File Size SHA-256 Checksum
libcache-mmap-perl_0.11.orig.tar.gz 21.0 KiB 2c9db069fff990c0765e600ca968114895f7e05aa661a18e59e94b3cd841abaa
libcache-mmap-perl_0.11-1build3.diff.gz 3.2 KiB c5e111c53882d49e7a9cadbb83231d3bdbe37ff12f127d2eea20c22ecc77aec7
libcache-mmap-perl_0.11-1build3.dsc 2.1 KiB 8403c6a392a0d0e043038617077780525650763fb3d0855ecc9b695e51637991

Available diffs

View changes file

Binary packages built by this source

libcache-mmap-perl: Shared data cache using memory mapped files

 This module implements a shared data cache, using memory mapped files.
 If routines are provided which interact with the underlying data, access to
 the cache is completely transparent, and the module handles all the details of
 refreshing cache contents, and updating underlying data, if necessary.
 .
 Cache entries are assigned to "buckets" within the cache file, depending on
 the key. Within each bucket, entries are stored approximately in order of last
 access, so that frequently accessed entries will move to the head of the
 bucket, thus decreasing access time. Concurrent accesses to the same bucket are
 prevented by file locking of the relevant section of the cache file.