当我向我的一个实体添加一列并将其发布以用于生产时,我遇到了这个问题,我必须重新启动 Apache 以清除 Doctrine 元数据 APC/APCU 缓存。
我已经尝试了以下所有命令,但没有一个对我有用:
php -r "apc_clear_cache();"
php -r "apcu_clear_cache();"
sudo php app/console doctrine:cache:clear-metadata
sudo php app/console doctrine:cache:clear-query
sudo php app/console doctrine:cache:clear-result
我收到了 --env=prod 的错误消息
sudo php app/console doctrine:cache:clear-metadata --env=prod
sudo php app/console doctrine:cache:clear-query --env=prod
sudo php app/console doctrine:cache:clear-result --env=prod
[LogicException]
Cannot clear APC Cache from Console, its share in the Web server memory and not accessible from the CLI.
我可以让它刷新 Doctrine 缓存的唯一方法是重新启动我的 apache 服务器,这有时可能是一个问题。
我在 Symfony 项目中对 Doctine 的缓存设置:
doctrine:
orm:
metadata_cache_driver: apc
result_cache_driver: apc
query_cache_driver: apc
second_level_cache:
enabled: true
log_enabled: false
region_cache_driver: apc
在这种情况下,如何在每次将新模式更新发布到生产环境时不重新启动 Apache 来清除 APC 缓存。如果负载均衡器后面有许多服务器,情况会更糟。