File: control

package info (click to toggle)
libtie-persistent-perl 1.00-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 88 kB
  • ctags: 32
  • sloc: perl: 320; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 1,074 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
Source: libtie-persistent-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Nicholas Bamber <nicholas@periapt.co.uk>
Standards-Version: 3.9.1
Homepage: http://search.cpan.org/dist/Tie-Persistent/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtie-persistent-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtie-persistent-perl/

Package: libtie-persistent-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: tied interface to persistent file
 Tie::Persistent makes working with persistent data real easy by using the tie
 interface. It works by storing data contained in a variable into a file (not
 unlike a database). The primary advantage is speed, as the whole datastructure
 is kept in memory (which is also a limitation), and, of course, that you can
 use arbitrary data structures inside the variable (unlike DB_File). Note that
 it is most useful if the data structure fits into memory.