vote up 0 vote down star

The scenario: I'm using Telerik Report Viewer in my web application to show large reports (about 5000 records from my DB, resulting in a 80 page document to display). Everything was working just fine... but on this terrible day my app starts to throw a "Out of Memory" exception.

I realize that Telerik Report was caching all data and only releasing it after a long time(15 minutes or more). The cache for one report consume at least 300mb!

The things is... I want to empty this cached data AND release my memory. The memory consumpion persist even after I clear the cache using the following code:

HttpRuntime.Close()

//or

foreach (DictionaryEntry item in HttpContext.Current.Cache) {   
HttpContext.Current.Cache.Remove((string)item.Key);
}

Any ideias? Thanks in advance.

flag
Just a warning, from my experience, Telerik questions tend to get (unfairly) downvoted here, sometimes with suggestions to contact support and formus – lagerdalek Sep 29 at 4:55
1  
I don't know where you're getting your information, but checking the [telerik] tag shows lots of questions, none of which are downvoted (below 0 atleast) or closed... – Matthew Scharley Sep 29 at 5:09
And contacting their forums is last not least a good idea. They know what they do in code behind and are therfore (from my point of view) the first address for requests related to their products. Not to forget that telerik provides excellent support in their forums. – ManniAT Oct 7 at 22:23

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.