Why is my disruptor example so slow?
I've taken the code example from Stack Overflow question Disruptor.NET example and modified it to "measure" time. Full listing is below: using System; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using Disruptor; using Disruptor.Dsl; namespace DisruptorTest { public sealed class ValueEntry { public long Value { get; set; } public ValueEntry() { Console.WriteLine("New ValueEntry created"); } } public class ValueAdditionHandler : IEventHandler<ValueEntry> { public void OnNext(ValueEntry data, long sequence, bool endOfBatch) { Program.sw.Stop(