Commit 53c43581 authored by Marc Gravell's avatar Marc Gravell

ignore profiling snapshots; set up console for profiling

parent 8deef2f2
......@@ -24,4 +24,5 @@ packages/
StackExchange.Redis.Tests/*Config.json
t8.shakespeare.txt
launchSettings.json
*.vsp
\ No newline at end of file
*.vsp
*.diagsession
\ No newline at end of file
......@@ -15,11 +15,13 @@ private static void Main()
{
Console.WriteLine($"{Environment.OSVersion} / {Environment.Version} / {(Environment.Is64BitProcess ? "64" : "32")}");
Console.WriteLine(RuntimeInformation.FrameworkDescription);
for (int i = 0; i < 500; i++)
DateTime stop = DateTime.UtcNow.AddSeconds(30);
int i = 0;
do
{
Console.WriteLine(i);
Console.WriteLine(i++);
RunCompetingBatchesOnSameMuxer();
}
} while (DateTime.UtcNow < stop);
}
static ConnectionMultiplexer Create()
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment