Skip to content

Commit

Permalink
Disable IIS HTTP logging
Browse files Browse the repository at this point in the history
Match the overall policy of the other framework benchmarks.

On my setup, this improves the requests/sec of a test like 'json' by 3-5%.
  • Loading branch information
MalcolmEvershed committed May 30, 2013
1 parent 9343fb5 commit c31b4dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Install-WindowsFeature Web-Asp-Net45
$env:Path += ";C:\Windows\system32\inetsrv"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::Machine)
appcmd set config -section:system.webServer/httpErrors -errorMode:Detailed | Out-Null

# Disable logging
appcmd set config -section:system.webServer/httpLogging -dontLog:True | Out-Null

# URL Rewrite
$rewrite_url = "http://download.microsoft.com/download/6/7/D/67D80164-7DD0-48AF-86E3-DE7A182D6815/rewrite_2.0_rtw_x64.msi"
$rewrite_local = "$workdir\rewrite_2.0_rtw_x64.msi"
Expand Down

0 comments on commit c31b4dc

Please sign in to comment.