目前 `satisfies?` 没有使用与协议方法相同的实现缓存,使其在现实世界中使用时速度过慢。
有
(defprotocol p (f [_]))
(deftype x [])
(deftype y [])
(extend-type x p (f [_]))
修补之前
(let [s "abc"] (bench (instance? CharSequence s))) ;; 执行时间平均值:1.358360 ns
(let [x (x.)] (bench (satisfies? p x))) ;; 执行时间平均值:112.649568 ns
(let [y (y.)] (bench (satisfies? p y))) ;; 执行时间平均值:2.605426 µs
*原因*:`satisfies?` 调用 `find-protocol-impl` 来查看对象是否实现协议,这会检查 x 是否是协议接口的实例或者 x 的类是否是协议实现之一(或者如果它在继承链中会让这种情况成立)。这个检查相当昂贵,并且没有缓存。
*建议*:将协议的方法实现缓存扩展到处理(并缓存)实例检查(包括负结果)。
修补之后
(let [x (x.)] (bench (satisfies? p x))) ;; 执行时间平均值:79.321426 ns
(let [y (y.)] (bench (satisfies? p y))) ;; 执行时间平均值:77.410858 ns
*补丁*:CLJ-1814-v7.patch(依赖于CLJ-2426)