Kuestenlogik.Akka.Persistence.Surgewave 0.1.1

Prefix Reserved
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Kuestenlogik.Akka.Persistence.Surgewave --version 0.1.1
                    
NuGet\Install-Package Kuestenlogik.Akka.Persistence.Surgewave -Version 0.1.1
                    
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="Kuestenlogik.Akka.Persistence.Surgewave" Version="0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kuestenlogik.Akka.Persistence.Surgewave" Version="0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Kuestenlogik.Akka.Persistence.Surgewave" />
                    
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 Kuestenlogik.Akka.Persistence.Surgewave --version 0.1.1
                    
#r "nuget: Kuestenlogik.Akka.Persistence.Surgewave, 0.1.1"
                    
#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 Kuestenlogik.Akka.Persistence.Surgewave@0.1.1
                    
#: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=Kuestenlogik.Akka.Persistence.Surgewave&version=0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Kuestenlogik.Akka.Persistence.Surgewave&version=0.1.1
                    
Install as a Cake Tool

Akka.Persistence.Surgewave

Akka.NET Persistence plugin backed by Surgewave — Journal, Snapshot Store, and Persistence Query with Schema Registry support.

NuGet PackageId: Kuestenlogik.Akka.Persistence.Surgewave  ·  Namespace: Akka.Persistence.Surgewave

The Akka.* prefix on nuget.org is verified-reserved by the Akka.NET team, so this package ships under the Kuestenlogik.* namespace prefix (Petabridge pattern). API surface and namespaces follow the Akka.Persistence convention unchanged.

Installation

dotnet add package Kuestenlogik.Akka.Persistence.Surgewave

Features

  • AsyncWriteJournal — Surgewave-backed event journal with index-based fast replay
  • SnapshotStore — Compacted topic for automatic snapshot lifecycle
  • Persistence Query — EventsByPersistenceId, EventsByTag, AllEvents (live + current)
  • Two Serialization Modes — Opaque (Akka serializer passthrough) and Schema Registry (Protobuf/Avro/JSON)
  • Schema Registry Integration — Events become first-class citizens in the Surgewave ecosystem
  • Exactly-Once Semantics — Optional transactional writes for AtomicWrite guarantees
  • Multi-Tenancy — Topic prefix support for multiple actor systems on the same cluster

Quick Start

builder.Services.AddAkka("my-system", (akkaBuilder, sp) =>
{
    akkaBuilder
        .WithSurgewavePersistence(surgewave =>
        {
            surgewave.BootstrapServers = "localhost:9092";
            surgewave.Journal.Topic = "akka-journal";
            surgewave.Snapshots.Topic = "akka-snapshots";
            surgewave.SchemaRegistry.Url = "http://localhost:8081";
        })
        .WithSurgewaveReadJournal();
});

License

Apache-2.0

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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.

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