NAME
   Aspect::Library::Memoize - Cross-cutting memoization

SYNOPSIS
     # memoize all subs that have '_slow_' in their name, under package MyApp
     aspect Memoize => call qr/^MyApp::.*_slow_/;

SUPER
   Aspect::Modular

DESCRIPTION
   An aspect interface on the Memoize module. Only difference from Memoize
   module is that you can specify subs to be memoized using pointcuts.

   Works by memoizing on the 1st call, and calling the memoized version on
   subsequent calls.

SEE ALSO
   See the Aspect pods for a guide to the Aspect module.

   You can find an example of using this aspect in the "examples/"
   directory of the distribution.

BUGS AND LIMITATIONS
   No bugs have been reported.

   Please report any bugs or feature requests through the web interface at
   <http://rt.cpan.org>.

SUPPORT
   Please report any bugs or feature requests through the web interface at
   <http://rt.cpan.org/Public/Dist/Display.html?Name=Aspect-Library-Memoize
   >.

INSTALLATION
   See perlmodinstall for information and options on installing Perl
   modules.

AVAILABILITY
   The latest version of this module is available from the Comprehensive
   Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a
   CPAN site near you. Or see
   <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.

AUTHORS
   Adam Kennedy <[email protected]>

   Marcel Gr�nauer <[email protected]>

   Ran Eilam <[email protected]>

SEE ALSO
   You can find AOP examples in the "examples/" directory of the
   distribution.

COPYRIGHT AND LICENSE
   Copyright 2001 by Marcel Gr�nauer

   Some parts copyright 2009 - 2010 Adam Kennedy.

   This library is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself.