mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
fc289a500b
Reload perl library files when updated on disk. PR: 56261 Submitted by: Andrew McNaughton <andrew@scoop.co.nz>
13 lines
509 B
Plaintext
13 lines
509 B
Plaintext
p5-Module-Reload
|
|
================
|
|
|
|
Similar to Apache::Reload, this module allows a running perl program to reload
|
|
all its libraries. Very useful for developing perl servers.
|
|
|
|
When 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.
|
|
|
|
WWW: http://search.cpan.org/dist/Module-Reload/
|