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
|
Source: libobject-realize-later-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ansgar Burchardt <ansgar@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl,
libscalar-list-utils-perl
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libobject-realize-later-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libobject-realize-later-perl.git
Homepage: https://metacpan.org/release/Object-Realize-Later
Package: libobject-realize-later-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libscalar-list-utils-perl
Description: Perl module providing delayed creation of objects
The Object::Realize::Later class helps with implementing transparent
on demand realization of object data. This is related to the tricks
on autoloading of data, the lesser known cousin of autoloading of
functionality.
.
On demand realization is all about performance gain. Why should you
spent costly time on realizing an object, when the data on the object is
never (or not yet) used? In interactive programs, postponed realization
may boost start-up: the realization of objects is triggered by the
use, so spread over time.
|