Skip Menu |

This queue is for tickets about the Cache-Cache CPAN distribution.

Report information
The Basics
Id: 6136
Status: resolved
Priority: 0/
Queue: Cache-Cache

People
Owner: dewitt [...] unto.net
Requestors: thomas.acunzo [...] ubs.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Subject: method get_namespaces( ) yields "__AUTO_PURGE__" as a namespace value if auto_purge_interval is set in options of Cache ref
This happens in both SharedMemoryCache & FileCache... Example use lib qw(../cpan/5.8.0-2003.05/lib); use Cache::FileCache; my $cache = new Cache::FileCache({namespace=>"foobar",auto_purge_interval=>"5 min"}); .... my @list = $cache->get_namespaces; print "Namespaces: @list\n"; .... Namespaces: __AUTO_PURGE__ Default foobar This is not fatal, but thought I should mention it. Regards Tom Acunzo Ubs Investment Bank (IMS Perot Systems)
Fixed. The __AUTO_PURGE__ namespace is now filtered out of the get_namespaces() method. This change has been checked into trunk at revision 538 and will be included in release 1.06. Thanks for the report!