問題描述
高性能 IIS 的最佳實踐/工具? (Best practices / tools for high performance IIS?)
Recently I come across high performance web server nginx.
I would wonder, where does IIS stands as far as performance matters?
What are the tools/best practices to increase IIS 7 / 7.5 performance for a web application hosted on IIS.
Web Servers like Apache, nginx, or IIS plays an important role in performance and this would definitely help developers to understand how does it matters to choose correct web server for scalable web application.
‑‑‑‑‑
參考解法
方法 1:
It's very hard to do a meaningful benchmarks/comparison between Apache/Nginx and IIS, but if you're really concerned about ASP.NET/IIS performance, this is a good start: Chapter 6 — Improving ASP.NET Performance.
In practice, profiling your application/addressing the performance issues within application and properly using caching would likely result in much bigger performance gain as compared to simply tuning IIS.
(by Krunal、BluesRockAddict)