network-center / interesting

collect interesting things. see Issues
https://network-center.github.io/interesting/
MIT License
0 stars 0 forks source link

2018年06月30日 数据查询的 N+1 问题 #39

Open imzyf opened 6 years ago

imzyf commented 6 years ago

N+1 查询问题 就是查询扩展字段时的循环查询问题。

为了解决 N+1 问题我使用了模型 预加载 方式,但是由于后台框架限制(也可能是使用不当),将 一对多 的被关联的模型数据都查出来了,数据量很大,导致页面卡顿,一次反向优化。

优化要权衡不能硬搬书本。