Covivo/mobicoop

View on GitHub
client/config/packages/prod/doctrine.yaml

Summary

Maintainability
Test Coverage
# doctrine:
#     orm:
#         metadata_cache_driver:
#             type: service
#             id: doctrine.system_cache_provider
#         query_cache_driver:
#             type: service
#             id: doctrine.system_cache_provider
#         result_cache_driver:
#             type: service
#             id: doctrine.result_cache_provider

services:
    doctrine.result_cache_provider:
        class: Symfony\Component\Cache\DoctrineProvider
        public: false
        arguments:
            - '@doctrine.result_cache_pool'
    doctrine.system_cache_provider:
        class: Symfony\Component\Cache\DoctrineProvider
        public: false
        arguments:
            - '@doctrine.system_cache_pool'

framework:
    cache:
        pools:
            doctrine.result_cache_pool:
                adapter: cache.app
            doctrine.system_cache_pool:
                adapter: cache.system