多个Zend_Cache配置



是否可以为Zend_Cache设置两个不同的缓存实例?例如,如果我想拥有一组永久存储的文件,除非我删除它们,而另一组文件每分钟都会失效 - 我可以这样做吗?

无论我在哪里看,我总是只看到使用一个前端和后端配置。

谢谢!

您只需创建两个不同的Zend_Cache实例并将它们粘贴到方便的位置即可。 我曾经做过这样的事情,在 boostrap 中实例化缓存实例,然后将它们粘贴在注册表中,如下所示:

protected function _initCache(){
    $this->bootstrap('config');
    $config = Zend_Registry::get('config')->myapp->cache;
    $cache = Zend_Cache::factory(
      $config->frontend->name,
      $config->backend->name,
      $config->frontend->opts->toArray(),
      $config->backend->opts->toArray()
    );
    Zend_Registry::set('cache',$cache);
    return $cache;
  }
  protected function _initUserCache(){
    $this->bootstrap('config');
    $config = Zend_Registry::get('config')->myapp->othercache;
    $cache = Zend_Cache::factory(
      $config->frontend->name,
      $config->backend->name,
      $config->frontend->opts->toArray(),
      $config->backend->opts->toArray()
    );
    Zend_Registry::set('othercache',$cache);
    return $cache;
  }

因此,Zend_Cache的设计实际上没有任何限制您可以拥有的不同缓存的数量。 您可以独立配置它们,使用您喜欢的任何前端和后端。

您可以使用缓存管理器资源,例如:

resources.cachemanager.foo.frontend.name = Core
resources.cachemanager.foo.frontend.options.lifetime = 300
resources.cachemanager.foo.frontend.options.automatic_serialization = true
resources.cachemanager.foo.frontend.options.cache_id_prefix = some_prefix
resources.cachemanager.foo.backend.name = Memcached
resources.cachemanager.foo.backend.options.lifetime = 300

"foo"是缓存键,您可以根据需要指定任意数量。

接下来,我将缓存管理器放在Zend_Registry(在引导程序中)

protected function _initCache()
{
        Zend_Registry::set('Zend_Caches', $this->bootstrap('cachemanager')
                                               ->getPluginResource('cachemanager')
                                               ->getCacheManager());
}

使用情况(无处不在)

Zend_Registry::get('Zend_Caches')->foo

相关内容

  • 没有找到相关文章

最新更新