我尝试使用Zend Framework 2和Doctrine 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'
现在,问题是:我的缓存配置正确吗?以及如何验证它是否确实有效?
当然,我知道我应该使用比简单数组更好的驱动程序,但目前对我来说已经足够了。