gpt4 book ai didi

php - Symfony 4 在 DEV 中运行缓慢

转载 作者:IT老高 更新时间:2023-10-28 21:20:19 26 4
gpt4 key购买 nike

我尝试在 docker 容器上运行一个简单的 Symfony 4 项目。我已经测试了常规的 PHP 脚本,它们运行良好。但是,对于 Symfony 项目,执行变得非常缓慢。例如,没有任何重要内容的页面需要 5-6 秒。

我附上了 Symfony 性能分析器的屏幕截图。

Screenshot1 Screenshot2 Screenshot3 Screenshot4

您知道如何将执行时间减少到可接受的水平吗?

最佳答案

似乎改变一致性级别大大提高了 Symfony 的性能。 (见 Docker docs)

这是我的新 docker-compose.yml 文件。注意卷后的“:cached”。

version: '3'
services:
web:
image: apache-php7
ports:
- "80:80"
volumes:
- .:/app:cached
tty: true

手册注释:

For directories mounted with cached, the host’s view of the file system is authoritative; writes performed by containers are immediately visible to the host, but there may be a delay before writes performed on the host are visible within containers.

关于php - Symfony 4 在 DEV 中运行缓慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48846995/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com