评论由: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
在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和新的补丁的Class/Character/Var结果(默认情况下没有额外的murmur步骤)
`
用户=> (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
`