0

我正在尝试通过利用它的结果缓存来提高使用 Doctrine 2.0 的应用程序的性能。

查询上的 setResultCacheImpl() 和 useResultCache(true) 与 APC 一起用作缓存。

调试我可以看到它\Doctrine\ORM\AbstractQuery->execute被调用但从未找到缓存的数据。原因是$cached[$id]从缓存读取数据时永远不会设置。查看下面的 Doctrine 代码,我也看不出$cached[$id]应该如何设置:

    // Check result cache
    if ($this->_useResultCache && $cacheDriver = $this->getResultCacheDriver()) {
        list($id, $hash) = $this->getResultCacheId();

        $cached = $this->_expireResultCache ? false : $cacheDriver->fetch($id);
        if ($cached === false || !isset($cached[$id])) {
            // Cache miss.
            $stmt = $this->_doExecute();

            $result = $this->_em->getHydrator($this->_hydrationMode)->hydrateAll(
                    $stmt, $this->_resultSetMapping, $this->_hints
                    );
            $cacheDriver->save($id, $result, $this->_resultCacheTTL);

            return $result;
        } else {
            // Cache hit.
            return $cached[$id];
        }
    }

任何想法?

4

1 回答 1

0

要解决此问题,您需要从 Doctrine 2.0.x 存储库应用修复:https ://github.com/doctrine/doctrine2/commit/4271706cabdf6f7a99ffbe6aad0efcec1584f562

于 2013-08-05T13:08:34.073 回答