I've been having really bad memory problems with an ASP.NET Application. It seems as if every time the page loads, the old previous instance of the page is not removed from memory. If you press F5 ten times, the memory adds 10-20MB to the instance. During Stress and performance testing, this would max out the memory and the web server will crash...

I ran ANTS memory profiling and it confirmed that every time a page is loaded, the old instane remains in memory. All my ASP.NET Web pages uses a Master page as well. Again, if I load the page 10 times, then 10 instances of the web page exists, as well as 10 instances of the master page...

http://oi51.tinypic.com/21msy2g.jpg

Looking at the ants profiler results, you can see that every page reload adds around 320Kb to the memory, and thats just the web page, not even taking the master page into account. My application is a life insurance app that captures applications, so it goes through about 30-40 pages. So you can see why this is a masssive proble.

How would I go about finding out whats keeping the page in memory? I have no idea where to begin... :\

All my pages uses Unity and Dependency injection to register service... Not sure if I need to unregister these services after during page_onUnload.

EDIT

Okay, I've managed to track the issue down. The reason why the page isn't disposed(GCollected) is because of the Unity service instances that registered but nevered unregistered during the unload of the page. This is how I'm using Unity on my page:

I inject the services through public properties

    #region Services

    [Dependency]
    public ReviewReportService SummaryService { get; set; }

    [Dependency]
    public Portfolios.PortfolioService PortfolioService { get; set; }

    #endregion

Then page init, I do the Unity Buildup:

    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);

                    ApplicationContainer.BuildUp(this.Context, this);
            }

Now obviously when the page goes through its normal lifecycle and calls Unload, it can't unload because of the dependency injection reference... I'm just not sure how to unregistered the services (SummaryService, PortfolioService )

I tried calling the following in OnUnload but it does nothing:

ApplicationContainer.GetContainer(Context).Teardown(this);

link|improve this question

feedback

4 Answers

You have a static reference to the Page somewhere and it can't be disposed.

link|improve this answer
1  
How would I determine if I have a static reference to the page? Any ways of identifying what object is referencing it? – FaNIX Aug 26 '11 at 3:18
feedback

I would definitely start by unregistering the services. I have seen massive memory leaks because of this very issue (although unity wasnt being used in that instance).

Also, look around and see if you are using the page variable in a way that's keeping it from being garbage collected.

link|improve this answer
feedback

I would check if a static colletion exist anywhere on the page / master page Just do a search for the word static (C#) or shared (VB) on the entire project

link|improve this answer
feedback
up vote 0 down vote accepted

The Issue was caused by UNITY and it's LifeTimeManager. I had to make use of a different unity LifeTimeManager that basically returns a new container every time a page does a buildup. On UnLoad of the page, teardown is called on the container and it's disposed, which releases all links to the injected properties. This solved my problem :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.