summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Memoize/Expire.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Memoize/Expire.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/tlpkg/tlperl/lib/Memoize/Expire.pm b/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
index 97e1aa44208..3d6d3e439ca 100644
--- a/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
+++ b/Master/tlpkg/tlperl/lib/Memoize/Expire.pm
@@ -3,7 +3,7 @@ package Memoize::Expire;
# require 5.00556;
use Carp;
$DEBUG = 0;
-$VERSION = '1.00';
+$VERSION = '1.02';
# This package will implement expiration by prepending a fixed-length header
# to the font of the cached data. The format of the header will be:
@@ -311,6 +311,11 @@ the underlying cache so that the user can specify that the cache is
also persistent or that it has some other interesting semantics. The
example above demonstrates how to do this, as does C<Memoize::Expire>.
+Another sample module, L<Memoize::Saves>, is available in a separate
+distribution on CPAN. It implements a policy that allows you to
+specify that certain function values would always be looked up afresh.
+See the documentation for details.
+
=head1 ALTERNATIVES
Brent Powers has a C<Memoize::ExpireLRU> module that was designed to