我正在使用Cache::FileCache
和存储在/tmp/FileCache/
在/tmp/FileCache/
中有3个目录:
__AUTO_PURGE__
Default
namespace
删除清除缓存哪一个是安全的?
答案 0 :(得分:2)
Cache::FileCache
实现了Cache::Cache
界面。
您可能希望编写一个简短的脚本,例如
,而不是直接弄乱文件系统use strict; use warnings;
use Cache::FileCache;
my $cache = Cache::FileCache->new(
{namespace => 'whatever namespace you are using'}
);
$cache->clear; # or Clear to remove all objects from all caches of this type.