NAME
Module::Use
SYNOPSIS
use Module::Use (Logger => "DB_FileLock", File => "/www/apache/logs/modules");
use Module::Use (Logger => "Debug");
DESCRIPTION
Module::Use will record the modules used over the course of the Perl interpreter's lifetime. If the logging module is able, the old logs are read and frequently used modules are automatically loaded. Note that no symbols are imported into packages.
OPTIONS
The following options are available when use
ing this module.
- Count
-
This is the number of times a module has been used for it to be automatically loaded.
- Limit
-
Do not automatically load more than this many modules.
- Logger
-
This is the logging module to use. Configuration is specific to the module chosen. Please see the documentation for the module.
The module name is
Module::Use::Logger
withLogger
replaced with the value of this option. - Percentage
-
The percentage of total module loads is used in the same manner as the
Count
. If bothPercentage
andCount
are given, the one with the greater counts is used.
SEE ALSO
Module::Use::Debug, Module::Use::DB_FileLock.
AUTHOR
James G. Smith <jgsmith@jamesmith.com>
COPYRIGHT
Copyright (C) 2001 James G. Smith
Released under the same license as Perl itself.