Change 16234 by jhi@alpha on 2002/04/27 22:19:08 Subject: [PATCH] FileCache 1.02 -> 1.021 From: Jerrad Pierce <[EMAIL PROTECTED]> Date: Sat, 27 Apr 2002 19:14:17 -0400 Message-Id: <[EMAIL PROTECTED]>
Affected files ... .... //depot/perl/lib/FileCache.pm#11 edit Differences ... ==== //depot/perl/lib/FileCache.pm#11 (text) ==== Index: perl/lib/FileCache.pm --- perl/lib/FileCache.pm.~1~ Sat Apr 27 16:30:06 2002 +++ perl/lib/FileCache.pm Sat Apr 27 16:30:06 2002 @@ -1,6 +1,6 @@ package FileCache; -our $VERSION = '1.02'; +our $VERSION = '1.021'; =head1 NAME @@ -45,6 +45,11 @@ and explicitly close the filehandle., when it is closed from the other end some cleanup needs to be done. +While it is permissible to C<close> a FileCache managed file, +do not do so if you are calling C<FileCache::cacheout> from a package other +than which it was imported, or with another module which overrides C<close>. +If you must, use C<FileCache::cacheout_close>. + =head1 BUGS F<sys/param.h> lies with its C<NOFILE> define on some systems, @@ -52,7 +57,7 @@ =cut -require 5.000; +require 5.006; use Carp; use strict; no strict 'refs'; End of Patch.