The analysis report component should produce automatic recommendations based on some domain-specific knowledge of heap objects etc. in specific .NET frameworks. Below is a list of potential ideas.
ASP.NET
Data providers
General
UWP
(These ideas were brought forth by Ido Flatow and Ofir Makmal.)
The analysis report component should produce automatic recommendations based on some domain-specific knowledge of heap objects etc. in specific .NET frameworks. Below is a list of potential ideas.
ASP.NET
Controllers orWebPageobjects surviving too many GCs (probably a memory leak as these should be fairly short-lived)WebCachecontainer (probably no default expiration)Data providers
DbConnectionandDbCommandobjects on the f-reachable queue (should beDisposed instead)General
Streamobject in the f-reachable queue where there is a correspondingStreamWriteron the heap that still has buffered data (the buffered data will be lost)UWP
PageorViewModelthat are still referenced (points to a likely memory leak)(These ideas were brought forth by Ido Flatow and Ofir Makmal.)