运行此代码最终抛出OOME
`
(let [c (a/chan)]
(a/go (while (a/<! c)))
(a/go
(when-some [xs (range)]
(doseq [x xs]
(a/>! c x)))))
`
这个(用{{let}}而不是{{when-some}})可以正常工作
`
(let [c (a/chan)]
(a/go (while (a/<! c)))
(a/go
(let [xs (range)]
(doseq [x xs]
(a/>! c x)))))
`
在前者中,range序列被存储在堆上(在Go块的状态数组中)并在整个doseq迭代过程中保留,尽管在循环初始化之后不再需要。
在后者中,range序列存储在栈上,因此编译器能够执行其局部清除魔术。
此行为可能适用于任何跨越多个ssa块的值。