-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
I'm using MiniProfiler.Windows in a while loop to measure the execution time of each iteration. The memory consumption of this program is quickly getting out of control (have seen upwards of 600mb extra memory in just a couple of minutes). When I stopped using MiniProfiler.Windows it all got back to the way it was. Either I'm missing some cleanup code, or there is a bug in MiniProfiler.Windows.
An example
public void HandleIncomingData()
{
while(true)
{
ConsoleProfiling.Start();
// Do some data processing here...
Console.WriteLine(ConsoleProfiling.StopAndGetConsoleFriendlyOutputStringWithSqlTimings());
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels