I have a website which executes simple MDX queries and produce output. This output is used to generate excel file. I used ANTS profiler and came to know that large amount of memory is consumed by unmanaged resources. Check the below image:
What should I do next to detect such memory leaks. I want to find out why these obejcts are still alive in memory. Please suggest what should I do next.
(
(
I experienced a similar issue. I don't have a solution for detecting the memory leak, but I'll let you know the path I chose. Instead of calling the MDX directly from the page, I moved the MDX queries to a SQL stored procedure which returns a resultset that I can use as if it were a relational query.
Hope this helps