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/ ...@@ -24,4 +24,5 @@ packages/
StackExchange.Redis.Tests/*Config.json StackExchange.Redis.Tests/*Config.json
t8.shakespeare.txt t8.shakespeare.txt
launchSettings.json launchSettings.json
*.vsp *.vsp
\ No newline at end of file *.diagsession
\ No newline at end of file
...@@ -15,11 +15,13 @@ private static void Main() ...@@ -15,11 +15,13 @@ private static void Main()
{ {
Console.WriteLine($"{Environment.OSVersion} / {Environment.Version} / {(Environment.Is64BitProcess ? "64" : "32")}"); Console.WriteLine($"{Environment.OSVersion} / {Environment.Version} / {(Environment.Is64BitProcess ? "64" : "32")}");
Console.WriteLine(RuntimeInformation.FrameworkDescription); 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(); RunCompetingBatchesOnSameMuxer();
} } while (DateTime.UtcNow < stop);
} }
static ConnectionMultiplexer Create() 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