0

我尝试使用Zend Framework 2Doctrine 2构建一个简单的应用程序。我决定使用 YAML 配置文件,所以我的doctrine.yml文件如下:

driver:
    application_entities:
        class: 'Doctrine\ORM\Mapping\Driver\AnnotationDriver'
        cache: 'array'
        paths:
            - '__DIR__/../src/__NAMESPACE__/Entity'
    orm_default:
        drivers:
            'Application\Entity': application_entities
    authentication:
        orm_default:
            object_manager: 'Doctrine\ORM\EntityManager'
            identity_class: 'Application\Entity\User'
            identity_property: 'login'
            credential_property: 'password'
configuration:
    orm_default:
        metadata_cache: 'array'
        query_cache: 'array'

现在,问题是:我的缓存配置正确吗?以及如何验证它是否确实有效?

当然,我知道我应该使用比简单数组更好的驱动程序,但目前对我来说已经足够了。

4

1 回答 1

1

Doctrine提供了一组命令行工具来简化诸如此类的常见管理任务。以下是可用命令的示例列表:

教义控制台命令

在您的情况下,您应该使用orm:ensure-production-settings命令来确保代理生成、元数据和查询缓存配置正确。

假设您正在使用DoctrineORMModule教义zend 框架 2集成,打开控制台并简单地键入:

$ cd /path/to/your/projectroot
$ php public/index.php orm:ensure-production-settings

如果缓存配置不正确,输出将警告您。

这是教义控制台的详细官方文档

于 2014-08-09T10:10:41.640 回答