Commit 596713b7 authored by Marc Gravell's avatar Marc Gravell

tweak to perf test rig

parent e38f42ab
using System;
using System.Diagnostics;
using System.Reflection;
using System.Threading.Tasks;
using BenchmarkDotNet.Attributes;
......@@ -29,8 +28,9 @@ public CustomConfig()
Add(new MemoryDiagnoser());
Add(StatisticColumn.OperationsPerSecond);
Add(JitOptimizationsValidator.FailOnError);
Add(Configure(Job.Clr));
//Add(Get(Job.Core));
Add(Configure(Job.Core));
}
}
internal class SlowConfig : CustomConfig
......@@ -178,7 +178,7 @@ public class Issue898 : IDisposable
public void Dispose() => mux?.Dispose();
public Issue898()
{
mux = ConnectionMultiplexer.Connect("localhost:6379");
mux = ConnectionMultiplexer.Connect("127.0.0.1:6379");
db = mux.GetDatabase();
}
......
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