评论者:michalmarczyk
首先,为了完整性,这里有一个新的补丁(0001-CLJ-1372-consistent-hasheq-for-java.util.-List-Map-M-alternative.patch),它对于未经处理的其他类型不会执行额外的murmur。对于单个PHM情况,速度较慢;以下为详细说明。此外,这里是在GitHub上的分支
https://github.com/michalmarczyk/clojure/tree/alien-hasheq-3
至于新的结果,性能打击相当大,我害怕
`
;;; 使用补丁(murmur hashCode默认版本)
user=> (let [class-instance java.lang.String character-instance \a var-instance #'hash] (c/bench (clojure.lang.Util/hasheq class-instance)) (c/bench (clojure.lang.Util/hasheq character-instance)) (c/bench (clojure.lang.Util/hasheq var-instance)))
WARNING: Final GC required 1.409118084170768 % of runtime
评估计数:655363680,在60个样本中,共有10922728次调用。
Execution time mean : 96.459888 ns
Execution time std-deviation : 1.019817 ns
执行时间下四分位数:95.079086 ns(2.5%)
执行时间上四分位数:98.684168 ns(97.5%)
Overhead used : 1.708347 ns
评估计数:675919140,在60个样本中,共有11265319次调用。
Execution time mean : 88.965959 ns
Execution time std-deviation : 0.825226 ns
执行时间下四分位数:87.817159 ns(2.5%)
执行时间上四分位数:90.755688 ns(97.5%)
Overhead used : 1.708347 ns
评估计数:574987680,在60个样本中,共有9583128次调用。
Execution time mean : 103.881498 ns
Execution time std-deviation : 1.103615 ns
执行时间下四分位数:102.257474 ns(2.5%)
执行时间上四分位数:106.071144 ns(97.5%)
Overhead used : 1.708347 ns
在60个样本中找到1个离群值(1.6667%)
low-severe 1 (1.6667 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
nil
;;; 1.6.0
user=> (let [class-instance java.lang.String character-instance \a var-instance #'hash] (c/bench (clojure.lang.Util/hasheq class-instance)) (c/bench (clojure.lang.Util/hasheq character-instance)) (c/bench (clojure.lang.Util/hasheq var-instance)))
WARNING: Final GC required 1.3353133083866688 % of runtime
评估计数:1829305260,在60个样本中,共有30488421次调用。
Execution time mean : 34.205701 ns
Execution time std-deviation : 0.379106 ns
执行时间下四分位数:33.680636 ns(2.5%)
执行时间上四分位数:34.990138 ns(97.5%)
Overhead used : 1.718257 ns
在 60 个样本中发现 2 个异常值(3.3333%)
low-severe 1 (1.6667 %)
low-mild 1 (1.6667 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
评估计数:1858100340,在60个样本中,共有30968339次调用。
Execution time mean : 30.401309 ns
Execution time std-deviation : 0.213878 ns
执行时间下四分位数:30.095976 ns(2.5%)
执行时间上四分位数:30.871497 ns(97.5%)
Overhead used : 1.718257 ns
评估计数:1592932200,在60个样本中,共有26548870次调用。
Execution time mean : 36.292934 ns
Execution time std-deviation : 0.333512 ns
执行时间下四分位数:35.795063 ns(2.5%)
执行时间上四分位数:36.918183 ns(97.5%)
Overhead used : 1.718257 ns
在60个样本中找到1个离群值(1.6667%)
low-severe 1 (1.6667 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
nil
`
带有新的补丁(在默认情况下没有额外的murmur步骤)的单个PHM和类/字符/变量结果
`
用户=> (let [phm (apply hash-map (interleave (range 128) (range 128))) juhm (java.util.HashMap. phm)] #_(assert (= (hash phm) (hash juhm))) (c/bench (unchecked-add (clojure.lang.Util/hasheq phm) (unchecked-add (clojure.lang.Util/hasheq "foo") (clojure.lang.Util/hasheq 123)))))
WARNING: Final GC required 1.258952964663877 % of runtime
评估计数:1007768460,在60个样本中,共有16796141次调用。
Execution time mean : 58.195608 ns
Execution time std-deviation : 0.482804 ns
执行时间下四分位数:57.655857 ns(2.5%)
执行时间上四分位数:59.154655 ns(97.5%)
Overhead used : 1.567532 ns
在60个样本中找到1个离群值(1.6667%)
low-severe 1 (1.6667 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
nil
user=> (let [class-instance java.lang.String character-instance \a var-instance #'hash] (c/bench (clojure.lang.Util/hasheq class-instance)) (c/bench (clojure.lang.Util/hasheq character-instance)) (c/bench (clojure.lang.Util/hasheq var-instance)))
评估计数:647944080,在60个样本中,共有10799068次调用。
Execution time mean : 91.275863 ns
Execution time std-deviation : 0.659943 ns
执行时间下四分位数:90.330980 ns(2.5%)
执行时间上四分位数:92.711120 ns(97.5%)
Overhead used : 1.567532 ns
评估计数:699506160,在60个样本中,共有11658436次调用。
Execution time mean : 84.564131 ns
Execution time std-deviation : 0.517071 ns
执行时间下四分位数:83.765607 ns(2.5%)
执行时间上四分位数:85.569206 ns(97.5%)
Overhead used : 1.567532 ns
在60个样本中找到1个离群值(1.6667%)
low-severe 1 (1.6667 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
评估计数:594919980,在60个样本中,共有9915333次调用。
Execution time mean : 100.336792 ns
Execution time std-deviation : 0.811312 ns
执行时间下四分位数:99.313490 ns(2.5%)
执行时间上四分位数:102.167675 ns(97.5%)
Overhead used : 1.567532 ns
在60个样本中发现了3个异常值(5.0000%)
low-severe 3 (5.0000 %)
离群值方差:1.6389%,方差略微因离群值而膨胀
nil
`