libcache-memcached-managed-perl 0.25-1 source package in Ubuntu

Changelog

libcache-memcached-managed-perl (0.25-1) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Change search.cpan.org based URIs to metacpan.org based URIs
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * debian/control: remove Nicholas Bamber from Uploaders on request of
    the MIA team. Closes: #924981
  * Remove Fabrizio Regalli from Uploaders. Thanks for your work!
  * Strip trailing slash from metacpan URLs.

  [ Laurent Baillet ]
  * fix lintian file-contains-trailing-whitespace warning

  [ Nick Morrott ]
  * New upstream version 0.25
  * d/control:
    - Declare compliance with Debian Policy 4.4.1 (no changes)
    - Bump debhelper compatibility level to 12
    - Add Rules-Requires-Root field
  * d/copyright:
    - Refresh upstream contact details
    - Refresh Debian Files stanza
  * d/patches:
    - Add patch spelling-error-in-manpage
  * d/tests/pkg-perl:
    - Add smoke-files to include testlib
  * d/u/metadata:
    - Add upstream metadata
  * d/watch:
    - Migrate to version 4 watch file format

 -- Nick Morrott <email address hidden>  Sat, 16 Nov 2019 16:43:17 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcache-memcached-managed-perl_0.25-1.dsc 2.3 KiB 66688938720344e4432cdb3533081b85c379b655504fa9cc3b0894f9f0580270
libcache-memcached-managed-perl_0.25.orig.tar.gz 41.9 KiB 1b1dc1b7df06fb238c296eff45e3db6fb631f66c70271f56f12a791c7643536a
libcache-memcached-managed-perl_0.25-1.debian.tar.xz 3.7 KiB 19d41101cba175d5d33e31b1b9cddac3e1517c761cd3c43d7e5675e1365ecb96

Available diffs

No changes file available.

Binary packages built by this source

libcache-memcached-managed-perl: API for managing cached information

 The Cache::Memcached::Managed module provides an API to values, cached in
 one or more memcached servers. Apart from being very similar to the API
 of Cache::Memcached, the Cached::Memcached::Managed API allows for
 management of groups of values, for simplified key generation and expiration,
 as well as version and namespace management and a few other goodies.
 .
 Over the functionality provided by the Cache::Memcached module, this module
 provides: automatic key generation, ID refinement, version management,
 namespace support, group management, easy (default) expiration specification,
 automatic fork() detection, magical increment, instant invalidation,
 dead memcached server detection, starting/stopping memcached servers and an
 extensive test-suite.
 .
 The basic premise is that each piece of information that is to be cached,
 can be identified by a key, an optional ID, a version and a namespace.
 The key determines the basic identification of the value to be cached.
 The ID specifies a refinement on the basic identification. The version
 ensures that differently formatted values with the same key and ID do not
 interfere with each other. The namespace ensures that different realms
 of information (for instance, for different users) do not interfere with each
 other.