libload-perl 0.23-1 source package in Ubuntu

Changelog

libload-perl (0.23-1) unstable; urgency=low


  * New upstream release.
  * Drop spelling patch, applied upstream.

 -- gregor herrmann <email address hidden>  Sat, 02 Jun 2012 19:18:56 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe perl
Xenial release universe perl
Trusty release universe perl

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libload-perl_0.23-1.dsc 2.0 KiB 86b9e3cddd6691f37419ef5fce21e8276970691be1275eb4eb4a68f853ea868f
libload-perl_0.23.orig.tar.gz 15.6 KiB e59f5fd99eae6137170f6f5de6333e4b9d14d74f08f1e1227be98a40ce7e386c
libload-perl_0.23-1.debian.tar.gz 2.4 KiB 76763729356e577b70cb8ea1f95db2d53c59a1aa425b51391f8c5f6f090e5dbe

Available diffs

No changes file available.

Binary packages built by this source

libload-perl: pragma for controlling when subroutines will be loaded

 The "load" pragma allows a module developer to give the application developer
 more options with regards to optimize for memory or CPU usage. The "load"
 pragma gives more control on the moment when subroutines are loaded and start
 taking up memory. This allows the application developer to optimize for CPU
 usage (by loading all of a module at compile time and thus reducing the
 amount of CPU used during the execution of an application). Or allow the
 application developer to optimize for memory usage, by loading subroutines
 only when they are actually needed, thereby however increasing the amount of
 CPU needed during execution.
 .
 The "load" pragma combines the best of both worlds from AutoLoader and
 SelfLoader. And adds some more features.
 .
 In a situation where you want to use as little memory as possible, the "load"
 pragma (in the context of a module) is a drop-in replacement for AutoLoader.
 But for situations where you want to have a module load everything it could
 ever possibly need (e.g. when starting a mod_perl server in pre-fork mode),
 the "load" pragma can be used (in the context of an application) to have all
 subroutines of a module loaded without having to make any change to the
 source of the module in question.