File: control

package info (click to toggle)
libtie-cache-perl 0.17-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 80 kB
  • ctags: 31
  • sloc: perl: 550; makefile: 43
file content (20 lines) | stat: -rw-r--r-- 850 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Source: libtie-cache-perl
Maintainer: Debian QA Group <packages@qa.debian.org>
Section: perl
Priority: extra
Standards-Version: 3.5.6
Build-Depends-Indep: debhelper (>= 4.0.2), perl (> 5.6.1)

Package: libtie-cache-perl
Architecture: all
Depends: ${perl:Depends}
Description: perl Tie::Cache - LRU Cache in Memory.
 This 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.