如何在symfony2存储库中指定查询结果缓存?

时间:2012-04-07 06:09:31

标签: caching symfony doctrine-orm apc

我有一个存储库,我试图设置结果缓存。我只能在网上找到一个如何执行此操作的示例...但是当我在我的某个存储库中实现该示例时,我收到错误。 我正在使用APC进行缓存,并启用了查询缓存以在我的config.yml文件中使用APC。我已经为APC分配了512M,目前只使用了50M(其中23M用于此单个失败的缓存条目)

这是我的存储库代码:

class AchievementRepository extends EntityRepository
{
    function findAchievementsByCategory($categoryObj)
    {
        $em=$this->getEntityManager()->createQuery("SELECT a FROM FTWGuildBundle:Achievement a where a.category=:category order by a.title")
            ->setParameter('category',$categoryObj);
        $em->useResultCache(true,3600,'findAchievementsByCategory');
        $result=$em->getResult();
        return $result;
    }
}

执行此操作时,我收到以下错误

Notice: apc_store() [<a href='function.apc-store'>function.apc-store</a>]: &quot;type&quot; returned as member variable from __sleep() but does not exist in /data/www/ftw2/Symfony/vendor/doctrine-common/lib/Doctrine/Common/Cache/ApcCache.php line 80 

当我查看我的apc.php文件以查看缓存的内容时,我在用户缓存部分找到我的缓存条目,其存储值为

Fatal error:  Nesting level too deep - recursive dependency? in /data/www/localhost/apc.php on line 1000

任何人都可以向我提供一些关于我出错的方向吗?

这个实体中有几列是ManyToOne,我是否需要在此查询中禁用延迟加载才能使其正常工作?如果是这样......怎么样? 编辑:我通过添加,fetch =&#34; EAGER&#34;启用了预先加载。到我的ManyToOne映射...没有苹果:(

编辑#2:答案 - 工人类代码(注意,实体类的所有属性(成就)已更改为受保护)

class AchievementRepository extends EntityRepository
{
    function findAchievementsByCategory($categoryObj)
    {
        $em=$this->getEntityManager()->createQuery("SELECT a FROM FTWGuildBundle:Achievement a where a.category=:category order by a.title")
            ->setParameter('category',$categoryObj);
        $em->useResultCache(true,3600,'findAchievementsByCategory');
        $result=$em->getArrayResult();
        return $result;
    }
}

1 个答案:

答案 0 :(得分:3)

当Doctrine缓存一个实体时,它会保存它的序列化状态。问题是,私有属性(由Doctrine生成时的默认可见性)无法序列化。要解决此问题,您必须使您的实体属性受到保护。更多信息:http://doctrine-orm.readthedocs.org/en/2.0.x/reference/working-with-objects.html#merging-entities

另一件事是a know issue(最终)在Doctrine 2.2版中修复,它将在Symfony 2.1中。如果由于某种原因无法升级,则缓存关联的唯一方法是使用getArrayResult而不是填充实体。