Excalibur.Dispatch.Serialization.MessagePack 3.0.0-alpha.163

This is a prerelease version of Excalibur.Dispatch.Serialization.MessagePack.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Excalibur.Dispatch.Serialization.MessagePack --version 3.0.0-alpha.163
                    
NuGet\Install-Package Excalibur.Dispatch.Serialization.MessagePack -Version 3.0.0-alpha.163
                    
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="Excalibur.Dispatch.Serialization.MessagePack" Version="3.0.0-alpha.163" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Excalibur.Dispatch.Serialization.MessagePack" Version="3.0.0-alpha.163" />
                    
Directory.Packages.props
<PackageReference Include="Excalibur.Dispatch.Serialization.MessagePack" />
                    
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 Excalibur.Dispatch.Serialization.MessagePack --version 3.0.0-alpha.163
                    
#r "nuget: Excalibur.Dispatch.Serialization.MessagePack, 3.0.0-alpha.163"
                    
#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 Excalibur.Dispatch.Serialization.MessagePack@3.0.0-alpha.163
                    
#: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=Excalibur.Dispatch.Serialization.MessagePack&version=3.0.0-alpha.163&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Excalibur.Dispatch.Serialization.MessagePack&version=3.0.0-alpha.163&prerelease
                    
Install as a Cake Tool

Excalibur.Dispatch.Serialization.MessagePack

Opt-in MessagePack serialization support for Excalibur framework.

Purpose

Provides high-performance MessagePack binary serialization for:

  • Ultra-low latency scenarios
  • Bandwidth-constrained environments
  • Cross-language interoperability (C++, Python, Rust, etc.)

Usage

Registration (Single Call)

One call does everything -- DI registration, serializer registry entry, and setting MessagePack as the current serializer:

services.AddMessagePackSerializer();

With Custom Options

Pass native MessagePackSerializerOptions for custom configuration:

services.AddMessagePackSerializer(
    MessagePackSerializerOptions.Standard
        .WithCompression(MessagePackCompression.Lz4BlockArray));

Package Dependencies

  • MessagePack - MessagePack binary serialization runtime
  • Excalibur.Dispatch.Abstractions - Core contracts only (no Core dependency)

AOT Compatibility

Native AOT compatible with source-generated formatters and resolvers.

Performance Characteristics

  • Throughput: ~2-5x faster than JSON for binary payloads
  • Compression: Built-in LZ4 support for bandwidth optimization
  • Latency: Sub-microsecond serialization for small messages

Architecture Compliance

This package follows the Dispatch serialization policy (R0.14):

  • Core (Excalibur.Dispatch) - System.Text.Json (default, ADR-295)
  • Public Edges (Excalibur.Dispatch.Hosting.Web, etc.) - System.Text.Json with source-gen
  • Opt-In Alternatives (Excalibur.Dispatch.Serialization.*) - Pay-for-play binary serializers

MessagePack is not included in Excalibur.Dispatch to avoid transitive bloat. Consumers must explicitly opt-in by:

  1. Adding <PackageReference Include="Excalibur.Dispatch.Serialization.MessagePack" />
  2. Calling services.AddMessagePackSerializer()

When to Use

Use MessagePack when:

  • You need maximum throughput and minimum latency
  • You're sending binary data across services
  • You need cross-language serialization (non-.NET clients)
  • You want bandwidth-efficient wire formats

Use System.Text.Json when:

  • You need human-readable message formats
  • You're exposing HTTP APIs to external consumers
  • You require JSON Schema or OpenAPI compatibility

Use MemoryPack when:

  • You're building internal .NET-to-.NET communication
  • You need the absolute fastest .NET binary serialization
  • You control both producer and consumer code

Pluggable Serialization Integration

MessagePack is assigned Serializer ID 3 in the pluggable serialization system. The magic byte 0x03 prefixes all MessagePack-serialized payloads.

Migration Support: When switching from another serializer (e.g., MemoryPack):

  1. Call services.AddMessagePackSerializer() -- old data remains readable via magic byte
  2. New messages use MessagePack
  3. No data migration needed for backward compatibility

See Also

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
3.0.0-alpha.178 39 4/25/2026
3.0.0-alpha.177 46 4/25/2026
3.0.0-alpha.176 39 4/25/2026
3.0.0-alpha.175 43 4/24/2026
3.0.0-alpha.174 49 4/24/2026
3.0.0-alpha.173 41 4/24/2026
3.0.0-alpha.170 40 4/23/2026
3.0.0-alpha.168 44 4/23/2026
3.0.0-alpha.165 45 4/22/2026
3.0.0-alpha.164 38 4/22/2026
3.0.0-alpha.163 43 4/22/2026
3.0.0-alpha.162 38 4/22/2026
3.0.0-alpha.161 42 4/21/2026
3.0.0-alpha.160 40 4/21/2026
3.0.0-alpha.159 41 4/21/2026
3.0.0-alpha.158 48 4/21/2026
3.0.0-alpha.157 45 4/20/2026
3.0.0-alpha.156 46 4/17/2026
3.0.0-alpha.155 42 4/17/2026
3.0.0-alpha.143 47 4/14/2026
Loading failed