如何缓存分页结果和分页结果教义?

发布于 2024-12-21 17:36:04 字数 193 浏览 1 评论 0原文

我正在使用 Zend 框架 & Zend_Paginator 与 Doctrine 2 和 DoctrineExtensions Paginate 适配器。

我需要缓存我的结果,但是,我不知道应该在哪里执行此操作。

对我来说,在存储库中执行此操作似乎是合乎逻辑的,但我尝试过,但它不适用于分页器适配器。

你要怎么走?

I'm using Zend Framework & Zend_Paginator with Doctrine 2 and DoctrineExtensions Paginate Adapter.

I need to cache my result, however, I don't know where should I do this.

It seems logical to me to do it in the Repository, but I tried and it doesn't work with the paginator adapter.

How would you go?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白芷 2024-12-28 17:36:04

查看 Zend_Cache。有一些不同的适配器,包括文件、数据库和 memcached - 但处理它的一般方法是这样的:

$frontendOptions = array(
   'lifetime' => 7200, // cache lifetime of 2 hours
   'automatic_serialization' => true
);

$backendOptions = array(
    'cache_dir' => './tmp/' // Directory where to put the cache files
);

// getting a Zend_Cache_Core object
$cache = Zend_Cache::factory('Core',
                             'File',
                             $frontendOptions,
                             $backendOptions);

if( ($result = $cache->load('myresult')) === false ) {
  // fetch $result
  $cache->save($result, 'myresult');
}

$result 不是缓存的变量。

Check out Zend_Cache. There are a handful of different adapters including file, database, and memcached - but the general way of handling it is this:

$frontendOptions = array(
   'lifetime' => 7200, // cache lifetime of 2 hours
   'automatic_serialization' => true
);

$backendOptions = array(
    'cache_dir' => './tmp/' // Directory where to put the cache files
);

// getting a Zend_Cache_Core object
$cache = Zend_Cache::factory('Core',
                             'File',
                             $frontendOptions,
                             $backendOptions);

if( ($result = $cache->load('myresult')) === false ) {
  // fetch $result
  $cache->save($result, 'myresult');
}

$result is not a cached var.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文