Jonathan Swartz > CHI > CHI::Driver::CacheCache

Download:
CHI-0.32.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  4
View Bugs
Report a bug
Source  

NAME ^

CHI::Driver::CacheCache -- CHI wrapper for Cache::Cache

SYNOPSIS ^

    use CHI;

    my $cache = CHI->new(
        driver     => 'CacheCache',
        cc_class   => 'Cache::FileCache',
        cc_options => { cache_root => '/path/to/cache/root' },
    );

DESCRIPTION ^

This driver wraps any Cache::Cache cache.

CONSTRUCTOR OPTIONS ^

When using this driver, the following options can be passed to CHI->new() in addition to the CHI.

cc_class

Name of Cache::Cache class to create, e.g. Cache::FileCache. Required.

cc_options

Hashref of options to pass to Cache::Cache constructor. Required.

SEE ALSO ^

Cache::Cache CHI

AUTHOR ^

Jonathan Swartz

COPYRIGHT & LICENSE ^

Copyright (C) 2007 Jonathan Swartz.

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