Forum Discussion
SamXion
Nov 12, 2021Copper Contributor
Why is my ASP.Net Web API piling up memory?
Hi everyone, I have a very simple MVC web api with a single controller that currently does nothing but returning a value. I am publishing it in VS2022 Preview 1 into a single file, so I get an .e...
- Nov 14, 2021If you're calling it ever 250ms, it's likely not quiet enough for the Garbage collector to fire up. And with 90mb, it likely isn't pushing enough memory pressure (that's still tiny) to force the Garbage collector.
shawnwildermuth
Nov 14, 2021Copper Contributor
If you're calling it ever 250ms, it's likely not quiet enough for the Garbage collector to fire up. And with 90mb, it likely isn't pushing enough memory pressure (that's still tiny) to force the Garbage collector.
SamXion
Nov 15, 2021Copper Contributor
Ok, I have to apologize and row back here. Even though I called GC.Collect(), I just noticed that I was running an older build that did NOT call the garbage collection. Running the latest build does indeed get rid of the memory piling.
So thanks for the help! This resolves my issue. 🙂
So thanks for the help! This resolves my issue. 🙂