评论由: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
至于新的结果,性能下降相当大,我担心
`
;;; 使用补丁(默认版本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,在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
Found 2 outliers in 60 samples (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
`
使用新补丁(默认情况下没有额外的murmur步骤)的One PHM和Class/Character/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,在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
`