从向量/分块序列构建的惰性序列有时会进行慢速的首次/下一次reduce。
观察
`
(def xs (vec (range 3000000)))
(time (reduce max xs)) ;; #1: 130ms, (参考)
(time (reduce max (lazy-cat xs))) ;; #2: 130ms,同样快
(time (reduce max 0 (lazy-cat xs))) ;; #3: 500ms,慢4倍!!
;; 双倍concate后,不是慢2倍而是慢10倍
(time (reduce max (lazy-cat xs xs))) ;; #4: 1200ms
(time (reduce max 0 (lazy-cat xs xs))) ;; #5: 1200ms
`
对#3的解释:问题在于,当{{seq-reduce}}在没有{{init}}时被调用,它将正确地再次调用{{reduce}}并采取快速路径。但给定{{init}},它将永远不会逃离到更快的reduce,而会坚持首次/下一次。
注意:在Clojure中,它们“适当”地缩放(前三个大约是45ms,后两个大约是110ms)。
原因是Clojure正确地逃离到快速路径
https://github.com/clojure/clojure/blob/2b242f943b9a74e753b7ee1b951a8699966ea560/src/clj/clojure/core/protocols.clj#L131-L143
这是一个RFC,因为我不是100%确信实现。需要小心不要在这里崩溃...
问题
1. 应该ChunkedCons实现IReduce?我认为是的。