libcache-fastmmap-perl 1.57-2 source package in Ubuntu

Changelog

libcache-fastmmap-perl (1.57-2) unstable; urgency=medium

  * Skip t/21.t during build and autopkgtests.
    It needs not only a tmpfs >= 8GB but also appropriate permissions.
    Thanks to Sebastien Delafond for the detailed bug report.
    (Closes: #986289)
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 4.6.1.

 -- gregor herrmann <email address hidden>  Thu, 14 Jul 2022 16:35:41 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libcache-fastmmap-perl_1.57-2.dsc 2.5 KiB 09e2fdfaa81eb8a854bd5c80dcf6fc7d2c9aee43e8d19f5314193aa7813276eb
libcache-fastmmap-perl_1.57.orig.tar.gz 56.2 KiB e04b3a28d989edb8fb96eafacdc2b87f9eccb84f047eb2e27cb26aa7d08cc7b8
libcache-fastmmap-perl_1.57-2.debian.tar.xz 4.7 KiB ff1247571630c5c8488ef80f91eddebd3b6eac43f31fd433fb260c2a40445ce3

No changes file available.

Binary packages built by this source

libcache-fastmmap-perl: Perl module providing a mmap'ed cache

 Cache::FastMmap uses the mmap system call to establish an interprocess shared
 memory cache. Its core code is written in C, which can provide significant
 performance compared to a Pure Perl implementation such as Cache::Mmap. It can
 handle rather large pages without the socket connection and latency of using
 full-fledged databases where long-term persistence is unnecessary.
 .
 Since the algorithm uses a dual-level hashing system (a hash is used to find
 a page, then another hash within each page to find a given slot), most get
 calls can execute in constant O(1) time. The system uses fcntl to handle
 concurrent access, but only locks individual pages to reduce contention. The
 oldest (least recently used) data is evicted from the cache first, making
 this cache implementation most suitable for cases when old data is unlikely
 to be searched.

libcache-fastmmap-perl-dbgsym: debug symbols for libcache-fastmmap-perl