评论者:michalmarczyk
首先,为了完整性,这是一个新的补丁(0001-CLJ-1372-consistent-hasheq-for-java.util.-List-Map-M-alternative.patch),它对于没有另外处理的类型不执行额外的低语。对于单个PHM情况,速度较慢;下面是详细信息。GitHub上的分支也在此
https://github.com/michalmarczyk/clojure/tree/alien-hasheq-3
至于新的结果,性能下降相当大,恐怕是这样的
`
;;;;
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)))
警告:最终 GC 需要 1.409118084170768 % 的运行时间
评估计数:655363680,在 60 次样本中,每次调用 10922728 次。
Execution time mean : 96.459888 ns
Execution time std-deviation : 1.019817 ns
执行时间下四分位数:95.079086 纳秒( 2.5%)
执行时间上四分位数:98.684168 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:90.755688 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:106.071144 纳秒(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)))
警告:最终 GC 需要 1.3353133083866688 % 的运行时间
评估计数:1829305260,在 60 次样本中,每次调用 30488421 次。
Execution time mean : 34.205701 ns
Execution time std-deviation : 0.379106 ns
执行时间下四分位数:33.680636 纳秒( 2.5%)
执行时间上四分位数:34.990138 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:30.871497 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:36.918183 纳秒(97.5%)
Overhead used : 1.718257 ns
在60个样本中发现了1个异常值 (1.6667 %)
low-severe 1 (1.6667 %)
异常值方差:1.6389 %,由于异常值,方差略有膨胀
nil
`
使用新补丁(默认情况下没有额外的低语步骤)的PHM和类/字符/变量结果
`
user=> (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)))))
警告:最终 GC 需要 1.258952964663877 % 的运行时间
评估计数:1007768460,在 60 次样本中,每次调用 16796141 次。
Execution time mean : 58.195608 ns
Execution time std-deviation : 0.482804 ns
执行时间下四分位数:57.655857 纳秒( 2.5%)
执行时间上四分位数:59.154655 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:92.711120 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:85.569206 纳秒(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 纳秒( 2.5%)
执行时间上四分位数:102.167675 纳秒(97.5%)
Overhead used : 1.567532 ns
在 60 个样本中发现了 3 个异常值(5.0000%)
low-severe 3 (5.0000 %)
异常值方差:1.6389 %,由于异常值,方差略有膨胀
nil
`