Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个中级广告服务器,我将 IHttpHandler 用于广告处理程序(广告处理程序插入一些日志、数据库连接并在最后获得字符串响应)。
我想确定哪个比其他的低,哪个性能更好。或者你有什么其他的推荐吗?
由于在 IIS 请求管道中调用 IHttpHandler 的时间有多早,自定义 IHttpHandler 在原始速度方面总是比 MVC 快。但是,根据您正在执行的操作,MVC 可能更直接且更易于维护,而对性能的影响可以忽略不计。
为了提供更好的建议,最好更多地了解您在做什么。