LockFree.EventStore 1.0.8

dotnet add package LockFree.EventStore --version 1.0.8
                    
NuGet\Install-Package LockFree.EventStore -Version 1.0.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LockFree.EventStore" Version="1.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockFree.EventStore" Version="1.0.8" />
                    
Directory.Packages.props
<PackageReference Include="LockFree.EventStore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LockFree.EventStore --version 1.0.8
                    
#r "nuget: LockFree.EventStore, 1.0.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LockFree.EventStore@1.0.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LockFree.EventStore&version=1.0.8
                    
Install as a Cake Addin
#tool nuget:?package=LockFree.EventStore&version=1.0.8
                    
Install as a Cake Tool

LockFree.EventStore

CI NuGet Quality Gate Status SonarQube Cloud An in-memory event store, running as a service, to synchronize and validate operations across multiple instances with high concurrency and no locks.


🚀 Get started in 3 steps

1. Run the server

docker run --rm -p 7070:7070 daniloneto/lockfree-eventstore:latest

2. Add the client

dotnet add package LockFree.EventStore

3. Write and read

var es = new EventStoreClient("http://localhost:7070");
await es.Append("gateway/orders", new OrderCreated { Id = "o-1", Valor = 123 });
await foreach (var ev in es.Read("gateway/orders", from: 0))
{
    /* handle event */
}

🔁 Client Sample

See samples/ClientSample for an example that:

  • Sends events in parallel to gateway/orders
  • Reads the events back
  • Computes local aggregations

To run:

docker run --rm -p 7070:7070 daniloneto/lockfree-eventstore:latest
cd samples/ClientSample
 dotnet run

🌐 Example with multiple Gateways (docker-compose)

Start 1 EventStore, 3 gateways and Nginx load balancing:

docker compose up --build

Test sending orders (load balanced across gateways):

curl -X POST http://localhost:8080/orders
curl -X POST 'http://localhost:8080/orders/bulk?n=50'

View statistics:

curl http://localhost:8080/stats/local    # stats of one gateway (one of the 3)
curl http://localhost:8080/stats/global   # global consolidation (via central reader)

💡 Why use it

  • Real concurrency: multiple writers without mutexes.
  • Guaranteed integrity: consistent ordering, conditional append, and idempotency.
  • Simple operation: no external coordination, no dependencies.

📌 Typical scenario

Two (or more) gateways behind a load balancer need to record operations to the same stream.
Lockfree.EventStore ensures order and integrity even under high parallelism, without relying on locks, keeping all state in memory.


📚 Complete documentation

Below is the full technical documentation of the API, advanced features, benchmarks, and usage examples.

Key Features

  • Lock-free MPMC writes with FIFO discard
  • Key-based partitioning for high concurrency
  • Consistent snapshots without blocking producers
  • Functional aggregations and time-window queries
  • Zero external dependencies, ready for AOT/Trimming
  • Fluent API for advanced configuration
  • Built-in metrics and observability
  • Specialized aggregations (Sum, Average, Min, Max)

Basic Usage Example

var store = new EventStore<Pedido>();
store.TryAppend(new Pedido { Id = 1, Valor = 10m, Timestamp = DateTime.UtcNow });

var total = store.Aggregate(() => 0m, (acc, e) => acc + e.Valor,
    from: DateTime.UtcNow.AddMinutes(-10));

New Constructors

// Explicit capacity
var store = new EventStore<Pedido>(capacidade: 100_000);

// Capacity and partitions
var store = new EventStore<Pedido>(capacidade: 50_000, particoes: 8);

// Advanced configuration
var store = new EventStore<Pedido>(new EventStoreOptions<Pedido>
{
    Capacidade = 100_000,
    Particoes = 16,
    OnEventDiscarded = evt => Logger.LogTrace("Event discarded: {Event}", evt),
    OnCapacityReached = () => Metrics.IncrementCounter("eventstore.capacity_reached"),
    TimestampSelector = new PedidoTimestampSelector()
});

// Fluent API
var store = EventStore.For<Pedido>()
    .WithCapacity(100_000)
    .WithPartitions(8)
    .OnDiscarded(evt => Log(evt))
    .OnCapacityReached(() => NotifyAdmin())
    .WithTimestampSelector(new PedidoTimestampSelector())
    .Create();

State Properties

store.Count          // Current number of events
store.Capacity       // Maximum configured capacity
store.IsEmpty        // Whether it's empty
store.IsFull         // Whether it reached maximum capacity
store.Partitions     // Number of partitions

Specialized Aggregations

// Count by time window
var count = store.Count(from: inicio, to: fim);

// Sum of values
var sum = store.Sum(evt => evt.Valor, from: inicio, to: fim);

// Average
var avg = store.Average(evt => evt.Valor, from: inicio, to: fim);

// Min and max
var min = store.Min(evt => evt.Pontuacao, from: inicio, to: fim);
var max = store.Max(evt => evt.Pontuacao, from: inicio, to: fim);

// With filters
var filteredSum = store.Sum(
    evt => evt.Valor, 
    filter: evt => evt.Tipo == "Pagamento",
    from: inicio, 
    to: fim
);

Snapshots with Filters

// Filtered snapshot
var eventosRecentes = store.Snapshot(
    filter: evt => evt.Timestamp > DateTime.UtcNow.AddMinutes(-5)
);

// Snapshot by time window
var snapshot = store.Snapshot(from: inicio, to: fim);

// Snapshot with filter and time window
var filtrado = store.Snapshot(
    filter: evt => evt.Valor > 100,
    from: inicio,
    to: fim
);

Cleanup and Maintenance

// Clear all events
store.Clear();
store.Reset(); // Alias for Clear()

// Purge old events (requires TimestampSelector)
store.Purge(olderThan: DateTime.UtcNow.AddHours(-1));

Metrics and Observability

// Detailed statistics
store.Statistics.TotalAppended        // Total appended events
store.Statistics.TotalDiscarded       // Total discarded events
store.Statistics.AppendsPerSecond     // Current append rate
store.Statistics.LastAppendTime       // Timestamp of the last append

Examples

MetricsDashboard

Fully featured web API for collecting and querying real-time metrics:

cd .\samples\MetricsDashboard
 dotnet run

Available endpoints:

  • POST /metrics - Add metric
  • GET /metrics/sum?label=cpu_usage - Sum values by label
  • GET /metrics/top?k=5 - Top K metrics

See samples/MetricsDashboard/TESTING.md for a complete testing guide.

Full API

  • TryAppend(event) — Adds an event, lock-free
  • Aggregate — Aggregates values by time window
  • Snapshot() — Returns an immutable copy of events
  • Count/Sum/Average/Min/Max — Specialized aggregations
  • Clear/Reset/Purge — Cleanup methods
  • Query — Flexible queries with filters
  • Statistics — Monitoring metrics

Partitions

The default number of partitions is Environment.ProcessorCount. You can force the partition using TryAppend(e, partition).

Snapshots

Snapshot() returns an approximate immutable copy of the current state of all partitions, ordered from the oldest to the newest event per partition.

Performance

Designed for high concurrency and low latency. Global order across partitions is approximate.


Performance Benchmarks

Value Types vs Reference Types

Operation Value Type Reference Type Improvement
Event append 560 ms 797 ms 42% faster
Event iteration 35.8 ns 132.5 ns 74% faster
Event queries 393.5 ns 1,749.1 ns 77% faster

Structure of Arrays (SoA) vs Array of Structures (AoS)

Operation SoA AoS Improvement
Key aggregation 55.2 ms 74.6 ms 26% faster
Memory usage Lower Higher Varies

Conclusions:

  1. Value types are significantly faster than reference types for reads and writes.
  2. SoA improves cache locality and reduces memory pressure.
  3. For high throughput, the EventStoreV2 implementation is recommended.
// Using EventStoreV2 with value types
var store = new EventStoreV2(capacidade: 1_000_000, particoes: 16);
store.Add("sensor1", 25.5, DateTime.UtcNow.Ticks);
double media = store.Average("sensor1");

Limitations

  • Global order is only approximate across partitions
  • Fixed capacity; old events are discarded when exceeded

License

MIT

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.8 0 8/21/2025
1.0.7 10 8/20/2025
1.0.6 10 8/20/2025
1.0.5 86 8/10/2025
1.0.2 192 8/6/2025
1.0.0 144 8/4/2025
0.1.3 19 8/2/2025
0.1.2 88 8/1/2025
0.1.1 85 8/1/2025

v1.0.5: Endpoints genéricos de streams, agregação com durationMs, endpoints administrativos, samples GatewayClient & docker-compose + Nginx, scripts de cenário, Dockerfiles multi-stage, dependência Ulid.