ISAPI 过滤器或扩展能否提供更好的性能?
ISAPI过滤器或扩展可以提供比asp.net缓存更高的性能并放弃asp.net框架吗?
非常感谢您的帮助。
can ISAPI filter or extension give extreme higher performance than asp.net caching and to give up asp.net framework?
thanks very much for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理论上,如果您用本机代码编写 ISAPI 缓存过滤器,由于没有垃圾收集器,它应该会更快。垃圾收集器通常会对缓存之类的东西造成很大的压力。
Theoretically if you write ISAPI caching filter in native code it should be faster due to absence of Garbage Collector. Garbage Collector usually makes a high pressure on such things as Cache.