CHI::Driver::CacheCache - CHI wrapper for Cache::Cache
use CHI; my $cache = CHI->new( driver => 'CacheCache', cc_class => 'Cache::FileCache', cc_options => { cache_root => '/path/to/cache/root' }, );
This driver wraps any Cache::Cache cache.
When using this driver, the following options can be passed to CHI->new() in addition to the CHI.
Name of Cache::Cache class to create, e.g. Cache::FileCache. Required.
Hashref of options to pass to Cache::Cache constructor. Required.