[HIGH] 性能:3 个 SelectorController 中存在 14 处 N+1 查询 #9
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
严重度:🟠 HIGH
Selector 控制器中
.map(t -> xxxService.findById(t))对每个 ID 单独查询,1000 个 ID = 1000 次 DB。受影响:
修复: 使用批量查询方法(如 findByIds),一次性获取全部数据后再做 map