当zend文件系统缓存对象被破坏时,如何删除tmp文件夹中存储的所有缓存文件?

时间:2019-06-21 14:13:27

标签: php caching zend-framework zend-framework2 zend-cache

我正在使用zend文件系统高速缓存,并且想要删除在高速缓存对象销毁时创建的所有高速缓存文件。我认为我可以设置一些配置。我找不到哪个?那是什么选择?

我尝试使用谷歌搜索并阅读文档。 Zend文档确实很烂,并且没有提供太多信息。

- (void)webViewDidFinishLoad:(UIWebView*)webView {
  NSString* returnValue = [webView stringByEvaluatingJavaScriptFromString:@"SCRIPT"];
  NSLog(@"returnValue = %@ ",returnValue);
}
$container->bindIf(
            "Zend\\Cache\\Storage\\StorageInterface",
            "Zend\\Cache\\Storage\\Adapter\\Filesystem"
        );

当前,当FileSystem对象被销毁时,它将垃圾文件保留在我的/ tmp文件夹中。

我想要的是当FileSystem删除后,它清除了/ tmp文件夹中的所有垃圾。

0 个答案:

没有答案