|
NAMEModule::Reload - Reload %INC files when updated on diskSYNOPSISModule::Reload->check; DESCRIPTIONWhen Perl pulls a file via "require", it stores the filename in the global hash %INC. The next time Perl tries to "require" the same file, it sees the file in %INC and does not reload from disk. This module's handler iterates over %INC and reloads the file if it has changed on disk.Set $Module::Reload::Debug to enable debugging output. BUGSA growing number of pragmas ("base", "fields", etc.) assume that they are loaded once only. When you reload the same file again, they tend to become confused and break. If you feel motivated to submit patches for these problems, I would encourage that.SEE ALSOModule::Reload::Selective is like this module, but lets you control which modules will be reloaded.again provides a slightly different mechanism for reloading changed modules, where you have to explicitly decide which modules to reload. Apache2::Reload (or Apache::Reload if you're still using Apache 1). perldoc require <http://perldoc.perl.org/functions/require.html> for details of how "require" works. REPOSITORY<https://github.com/neilb/Module-Reload>AUTHORDoug MacEachern & Joshua PritikinNow maintained by Neil Bowers <neilb@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 1997-1998 Doug MacEachern & Joshua Pritikin.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |