libtie-cache-lru-perl 20150301-3 source package in Ubuntu

Changelog

libtie-cache-lru-perl (20150301-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Submit, Repository, Repository-Browse.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata (already
    present in machine-readable debian/copyright).

 -- Jelmer Vernooij <email address hidden>  Mon, 29 Aug 2022 15:41:38 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtie-cache-lru-perl_20150301-3.dsc 1.9 KiB 3c0dda6ff15bae4cd9cbc06ac6c8d710ae3dbf584bd4ce2329e5bd27d3991336
libtie-cache-lru-perl_20150301.orig.tar.gz 138.7 KiB 1bf740450d3a6d7c12b48c25f7da5964e44e7cc38b28572cfb76ff22464f4469
libtie-cache-lru-perl_20150301-3.debian.tar.xz 1.8 KiB a2eefe3740584cf915f1e6e80c89e9d288c388cf14f38078631ff5f3bd87fe34

Available diffs

No changes file available.

Binary packages built by this source

libtie-cache-lru-perl: Perl module for Least-Recently Used cache

 This is an implementation of a least-recently used (LRU) cache keeping the
 cache in RAM.
 .
 A LRU cache is similar to the kind of cache used by a web browser. New items
 are placed into the top of the cache. When the cache grows past its size
 limit, it throws away items off the bottom. The trick is that whenever an
 item is -accessed-, it is pulled back to the top. The end result of all this
 is that items which are frequently accessed tend to stay in the cache.