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