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