I am trying to optimize my Symfony application performances and I followed these posts:
I am "worried" about these lines:
doctrine:
orm:
entity_managers:
default:
metadata_cache_driver: apc
query_cache_driver: apc
result_cache_driver: apc
Are they safe to use or I must handle them with care after deploy?
I am clearing the cache with php app/console cache:clear --env=prod --no-debug
, do I need to clear APC cache too?