目前 `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)