👾 Fusion Samples

January 20, 2026 · View on GitHub

Fusion Documentation Chat @ Voxt Build

Don't know what Fusion is? You should! Fusion is your #1 partner in crime if you're building a real-time app (an online app delivering some or all updates in real-time) or a high-load app. Moreover, it plays really well with Blazor and works on MAUI.

Curious to see Fusion in action? Explore [Voxt.ai] – a very new chat app built by the minds behind Fusion.

Voxt fuses real-time audio, live transcription, and AI assistance to let you communicate with utmost efficiency. With clients for WebAssembly, iOS, Android, and Windows, it boasts nearly 100% code sharing across these platforms. Beyond real-time updates, several of its features, like offline mode, are powered by Fusion.

Fusion allows you to build real-time UIs like this one — and it's nearly as easy as if there were no logic related to real-time updates at all:

What's Inside?

Console Samples

HelloWorld

Demonstrates Fusion's core compute service pattern with automatic dependency tracking. The sample simulates a project build system that dynamically recomputes projects when their dependencies are invalidated, showcasing automatic caching and invalidation.

HelloCart

Showcases five progressive implementations of a shopping cart system—from in-memory to multi-host distributed—using Fusion's operations framework and command handlers. Demonstrates how to track product prices and cart totals with real-time updates.

Blazor Samples

HelloBlazorServer

A simple Blazor Server application demonstrating real-time UI updates using Fusion compute services. Includes a counter, weather forecast, and chat service with server-side rendering and WebSocket communication.

HelloBlazorHybrid

Extends HelloBlazorServer with hybrid rendering, supporting both server-side and WebAssembly interactive components with Fusion's compute services for real-time data binding.

Blazor Sample

A full-featured Blazor application with GitHub OAuth authentication, database persistence (SQLite), and Entity Framework Core integration. Demonstrates multiple compute services including chat, composition, image streaming, and real-time sum calculations.

TodoApp Sample

A comprehensive todo application supporting both single-server and multi-tenant distributed architectures with PostgreSQL, SQL Server, or SQLite backends. Showcases Fusion's database entity resolvers, sharding, backend/API server separation patterns, and RPC streaming.

RPC Samples

MiniRpc

A minimal client-server chat application using Fusion's RPC framework with WebSocket transport. Demonstrates compute methods, command handlers, and real-time state synchronization between client and server.

MultiServerRpc

Extends MiniRpc with multiple servers using consistent hashing-based routing to distribute chat conversations across servers based on chat ID, demonstrating horizontal scalability patterns.

MeshRpc

Demonstrates a dynamic peer-to-peer mesh network where hosts are added and removed at runtime. Fusion's shard mapping automatically routes requests to appropriate hosts for distributed counter services.

Benchmarks

See Benchmarks.md for the most recent results.

Benchmark

Compares Fusion services against an identical non-Fusion DAL, measuring both local and remote access throughput.

RpcBenchmark

Benchmarks ActualLab.Rpc against gRPC, SignalR, StreamJsonRpc, MagicOnion, and HTTP (REST), measuring both call and streaming throughput on different payload sizes.

Running Samples

Build & run locally with .NET 10 SDK:

# Run this command first
dotnet build
SampleCommand
HelloCartdotnet run -p src/HelloCart/HelloCart.csproj
HelloWorlddotnet run -p src/HelloWorld/HelloWorld.csproj
HelloBlazorServerdotnet run -p src/HelloBlazorServer/HelloBlazorServer.csproj + open http://localhost:5005/
HelloBlazorHybriddotnet run -p src/HelloBlazorHybrid/Server/Server.csproj + open http://localhost:5005/
Blazor Sampledotnet run -p src/Blazor/Server/Server.csproj + open http://localhost:5005/
TodoApp Sampledotnet run -p src/TodoApp/Host/Host.csproj + open http://localhost:5005/
MiniRpcdotnet run -p src/MiniRpc/MiniRpc.csproj
MultiServerRpcdotnet run -p src/MultiServerRpc/MultiServerRpc.csproj
MeshRpcdotnet run -p src/MeshRpc/MeshRpc.csproj
Benchmarkdotnet run -c:Release -p src/Benchmark/Benchmark.csproj
RpcBenchmarkdotnet run -c:Release -p src/RpcBenchmark/RpcBenchmark.csproj

Build & run with Docker + Docker Compose:

# Run this command first
docker-compose build
SampleCommand
HelloCartdocker-compose run --build sample_hello_cart
HelloWorlddocker-compose run --build sample_hello_world
HelloBlazorServerdocker-compose run --build --service-ports sample_hello_blazor_server + open http://localhost:5005/
HelloBlazorHybriddocker-compose run --build --service-ports sample_hello_blazor_hybrid + open http://localhost:5005/
Blazor Sampledocker-compose run --build --service-ports sample_blazor + open http://localhost:5005/
TodoApp Sampledocker-compose run --build --service-ports sample_todoapp + open http://localhost:5005/
MiniRpcdocker-compose run --build sample_mini_rpc
MultiServerRpcdocker-compose run --build sample_multi_server_rpc
MeshRpcdocker-compose run --build sample_mesh_rpc
Benchmarkdocker-compose run --build sample_benchmark
RpcBenchmarkdocker-compose run --build sample_rpc_benchmark

P.S. If you've already spent some time learning about Fusion, please help us to make it better by completing Fusion Feedback Form (1…3 min).