ZF2 - 在缓存中保存函数的结果

时间:2015-03-22 22:19:57

标签: caching zend-framework2 zend-cache

我创建了一个视图助手,在输出外部URL之前检查它是否存在。其中一些URL在我的主要布局中,因此通过一直调用所有这些URL来检查我的网站是否相当慢,以检查它们是否存在。我想保存该函数的输出,以便它只检查一个URL,如果在不到一小时或一天内没有检查过相同的URL。我相信我应该使用Zend Cache来做到这一点?但我不知道从哪里开始,你有任何建议,简单的解决方案或一些基本的教程要学习吗?谢谢!

1 个答案:

答案 0 :(得分:2)

为缓存服务添加全局配置,例如here

<强>配置/自动加载/ global.php

'service_manager' => array(
     'abstract_factories' => array(
            'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
      )
),

config / autoload / cache.global.php

return array(
    'caches' => array(
         // Cache config
    )
)

使用factory创建View Helper:

<强>应用/ Module.php :: getViewHelperConfig()

'LinkHelper' => function ($sm) {
     $locator = $sm->getServiceLocator();
     return new LinkHelper($locator->get('memcached'))
}

在View Helper中使用缓存服务:

<强> LinkHelper.php

protected $cache;

public function __construct($cache) 
{
    $this->cache = $cache;
}

public function __invoke($url) 
{
    $cacheKey = md5($url);

    if ($this->cache->hasItem($cacheKey) {
         return $this->cache->getItem($cacheKey);
    }

    $link = ''; // Parse link
    $this->cache->setItem($cacheKey, $link);

    return $link;
}