What are the performance implications of wildcard mapping all requests through IIS 6.0? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:53:41Zhttp://stackoverflow.com/feeds/question/583347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/583347/what-are-the-performance-implications-of-wildcard-mapping-all-requests-through-ii0What are the performance implications of wildcard mapping all requests through IIS 6.0?slolife2009-02-24T20:04:00Z2009-02-24T21:28:55Z
<p>I am interested in using <a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.NET</a> and noticed in the <a href="http://urlrewriter.net/index.php/support/installation/windows-server-2003" rel="nofollow">config page</a> for IIS 6.0 on Win2k3, that they say to map all requests through the ASP.NET ISAPI.</p>
<p>That's fine, but I am wondering if anyone has good or bad things to say about this performance wise? Is my web server going to be dragged down to its knees by doing this or will it be more of a small step up in server load?</p>
<p>My server currently has room to breathe now, so some performance hit is expected and acceptable.</p>
http://stackoverflow.com/questions/583347/what-are-the-performance-implications-of-wildcard-mapping-all-requests-through-ii/583371#5833711Answer by Freddy Rios for What are the performance implications of wildcard mapping all requests through IIS 6.0?Freddy Rios2009-02-24T20:12:05Z2009-02-24T20:22:29Z<p>According to this: <a href="http://mvolo.com/blogs/serverside/archive/2006/11/10/Stopping-hot_2D00_linking-with-IIS-and-ASP.NET.aspx" rel="nofollow">http://mvolo.com/blogs/serverside/archive/2006/11/10/Stopping-hot_2D00_linking-with-IIS-and-ASP.NET.aspx</a> ... we are talking of 30% impact of the resources used for serving images.</p>
<p><strong>Update 1:</strong> It will depend on the amount of dynamic vs. static content you have. If you have enough spare capacity, you can just turn it on and follow closely the performance impact. If it starts to degrade too much you can just turn it off. After that you can proceed with confidence on doing the extension-less changes.</p>
http://stackoverflow.com/questions/583347/what-are-the-performance-implications-of-wildcard-mapping-all-requests-through-ii/583691#5836912Answer by ljubomir for What are the performance implications of wildcard mapping all requests through IIS 6.0?ljubomir2009-02-24T21:28:55Z2009-02-24T21:28:55Z<p>Wildcard mapping does have a huge impact on performance, mostly because it uses the app thread pool not for page request processing, but for all the content. Let's assume you have a usual page with at least 10 additional resources like images, css and javascript - then you're blocking other potential request by serving the static content directly from the pool. More info on asp.net IIS 6 threading can be found <a href="http://msdn.microsoft.com/en-us/library/ms998549.aspx#scalenetchapt06%5Ftopic8" rel="nofollow">here</a>.</p>
<p>One way to go over it (how i did it) is to unable wildcard mapping to the folders that hold the static content - after that you'll receive only valid app request as you would do in an ordinary situation. </p>
<p>The way to unmap the static directories is to create an application of each one of them and then do the unmapping, and after that to undo the application creating thing. You can find more details on <a href="http://blog.codeville.net/2008/07/07/overriding-iis6-wildcard-maps-on-individual-directories/" rel="nofollow">Steve Sanderson's blog</a>.</p>