NAME
File::Spec::Memoized - Memoization of File::Spec to make it faster
VERSION
This document describes File::Spec::Memoized version 0.003.
SYNOPSIS
# All you have to do is load this module.
use File::Spec::Memoized;
# Once this module is loaded, File::Spec features
# will become faster.
my $path = File::Spec->catfile('path', 'to', 'file.txt');
DESCRIPTION
File::Spec::Memoized makes File::Spec faster using memoization (data caching). Once you load this module, File::Spec features will become significantly faster.
This module adopts File::Spec, so you need any changes in your program. All you have to do is say use File::Spec::Memoized
.
INTERFACE
Cache control methods
DEPENDENCIES
Perl 5.10.0 or later.
BUGS
No bugs have been reported.
Please report any bugs or feature requests to the author.
SEE ALSO
AUTHOR
Goro Fuji (gfx) <gfuji(at)cpan.org>
LICENSE AND COPYRIGHT
Copyright (c) 2010, Goro Fuji (gfx). Some rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.