Application Pool consuming High Memory


Hi Guys,

One of the web application which was in a production environment in my organization suddenly started consuming high memory and eventually freeze.

After spending some time troubleshooting code I couldn’t find any issue. Finally I found that it was just a simple web.config settings you and me always tend to ignore.

<compilation
         …
         debug="true"
    />
<trace
        enabled="true"
        …
    />

Note : when we debug using visual studio the above values are needed for debugging but when you finally move your application to production, make sure the both of these values are set to “false

Comments