如何提高 symfony 管理生成器页面的性能?
我有一个 symfony 管理生成器页面,其中每一行都会进行多次函数调用,因此会多次访问数据库。
我向 table_method
添加了一个查询并使用了一些联接,但它并没有减少在我的页面上执行的查询数量。
一个人应该做什么来提高绩效?
I have a symfony admin generator page where each row makes several function calls and, therefore, several trips to the database.
I added a query to table_method
and used some joins but it doesn't reduce the number of queries executed on my page.
What's a person supposed to do to improve performance here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
链接到“table_method”的查询必须具有显示的所有字段,否则您可能会忽略某些 kisa 字段,或者您的查询没有
根据手册添加与示例 Symfony 相关的字段,以减少查询数量,如下所示如下:
your query linked to your "table_method" must have all the fields that show otherwise you're probably ignoring some kisa field or your query did not add in fields related to samples
Symfony according to the manual that is done to reduce the number of queries as follows:
您可以禁用外键上的某些过滤器,它们有自己的具体请求,而不是基于 table_method。
You can disable some filters on foreign key, they have their own specifics requests, not based on table_method.