在 Castle Dynamic Proxy 2.1 IModelInterceptorsSelector 中重写 GetHashCode 和 Equals

发布于 2024-09-08 10:28:25 字数 130 浏览 9 评论 0原文

我读过,为了在使用 Castle 动态代理时使用拦截器选择器时获得缓存和推送性能,我需要重写 GetType()、GetHashCode() 和 Equals()

我在哪里可以找到示例或内容从执行的角度来看,最好的实施方式是什么?

I've read that in order to get caching and push performance when using an Interceptor Selector when using Castle Dynamic Proxy that I need to override GetType(), GetHashCode() and Equals()

Where can I find an example of or what would be the best, from a performing perspective, implementation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

从﹋此江山别 2024-09-15 10:28:25

你不能重写 GetType,它不是虚拟的。

对于其余的类型,请使用与任何其他类型相同的技术。
我通常将选择器设置为无状态,并将方法实现为 this.GetType().GetHashCode()This.GetType() == other.GetType()

you can't override GetType, it's not virtual.

For the remaining ones, use the same technique you'd use for any other type.
I generally make my selectors stateless, and implement the methods as this.GetType().GetHashCode() and This.GetType() == other.GetType()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文