File: control

package info (click to toggle)
libcache-memcached-managed-perl 0.24-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 260 kB
  • ctags: 50
  • sloc: perl: 617; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 2,153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Source: libcache-memcached-managed-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libcache-memcached-perl,
 libsocket6-perl,
 memcached,
 netbase,
 perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Nicholas Bamber <nicholas@periapt.co.uk>, Fabrizio Regalli <fabreg@fabreg.it>
Standards-Version: 3.9.3
Homepage: http://search.cpan.org/dist/Cache-Memcached-Managed/
Vcs-Git: git://git.debian.org/pkg-perl/packages/libcache-memcached-managed-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcache-memcached-managed-perl.git

Package: libcache-memcached-managed-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libcache-memcached-perl,
 memcached
Recommends: libsocket6-perl
Description: 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.