Foreach argument CoW should be optimized
未关闭
还没有人认领这个 Issue。
Category: Optimizer
Feature
- 主要语言
- C
- 星标
- 40.4k
- 派生
- 8.1k
- 平均合并
- 2 天 13 小时
- 30 天内合并 PR
- 96
描述
Description
Currently, foreach does CoW on any foreach argument ($arr) modification. This is too conservative.
https://3v4l.org/ShQmT/rfc#vgit.master
The repro shows common usecase of modifying currently iterated item/index. CoW is not needed, as the currently iterated item/index will never be iterated again.
In general, any already iterated item/key does not need CoW when unset/modified.
Also $arr append does not need CoW neither as the last element of the original $arr can be easily tracked.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从链接的 3v4l.org/ShQmT 复现开始,跟踪 PHP 的 foreach 实现如何处理已修改项、键、unset 操作和追加操作的 copy-on-write。完成的标准是证明已经迭代过的元素和追加情况能够避免不必要的 CoW,同时保持 foreach 的行为不变。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- c, php
- 领域
- backend, performance
- Issue 类型
- 重构
- 难度
- 5/5
- 预计耗时
- 一周以上
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100