Reputation: 18117
One of our ASP.NET MVC3 web app takes too much memory while hosted on single IIS7 pool. Sometimes up to 1gb. Where I should start and how to find memory issues, any suggestions?
Upvotes: 1
Views: 532
Reputation: 75083
I would look at the database first, as that will be mostly the case to step up your memory allocation.
There are several tools out there that provide you with Profiling, both code and memory, but before jumping out into one of them, try "our" own StackOverflow Profiling now called Mini Profiler to help you realize where are you wasting more time, how long your queries take and see if you're doing the database access correctly...
If that does not help, try one of the free/commercial tools out there like:
or follow up this question
Upvotes: 2