评论者: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)))
警告:最终GC需要运行时1.409118084170768 %的时间
评估计数:655363680次,每个样本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次,每个样本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次,每个样本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次,每个样本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次,每个样本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次,每个样本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
`
使用新补丁(默认情况下没有额外的murmur步骤)一个PHM和类/字符/Var的结果
`
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次,每个样本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次,每个样本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次,每个样本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次,每个样本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
`