libtie-cache-perl 0.17-4 source package in Ubuntu

Changelog

libtie-cache-perl (0.17-4) unstable; urgency=low

  * FTBFS with perl5.10 (Closes: #467984)
       - Changes done in debian/rules
  * Bumped Standard version to 3.7.3.
  * Changed debian/control
       - Removed Homepage from description and used as a Standard tag.

 -- Ubuntu Archive Auto-Sync <email address hidden>   Fri,  02 May 2008 02:17:14 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Intrepid
Original maintainer:
Deepak Tripathi
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl
Precise release universe perl

Builds

Intrepid: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtie-cache-perl_0.17.orig.tar.gz 10.5 KiB b41a7981279b826d74ed0a4686e5c929cff315300a73ddca763d21ae81f1d3bf
libtie-cache-perl_0.17-4.diff.gz 2.8 KiB 36f120561372d6ca2a5c66dec71d820016a2ce970faeb7c86b34c6bb95cfb625
libtie-cache-perl_0.17-4.dsc 698 bytes b93e6b422b6bd5f6d77367259f4da141b402f31b821179fcaeee7fca2eda31f8

View changes file

Binary packages built by this source

libtie-cache-perl: module for LRU cache in memory

 The module Tie::Cache module implements a least recently used (LRU) cache in
 memory through a tie interface. Any time data is stored in the tied hash,
 that key/value pair has an entry time associated with it, and as the cache
 fills up, those members of the cache that are the oldest are removed to make
 room for new entries.
 .
 So, the cache only "remembers" the last written entries, up to the size
 of the cache. This can be especially useful if you access great amounts
 of data, but only access a minority of the data a majority of the time.