Pulse.Mqtt.Storage.Sqlite 2.29.0

dotnet add package Pulse.Mqtt.Storage.Sqlite --version 2.29.0
                    
NuGet\Install-Package Pulse.Mqtt.Storage.Sqlite -Version 2.29.0
                    
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="Pulse.Mqtt.Storage.Sqlite" Version="2.29.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pulse.Mqtt.Storage.Sqlite" Version="2.29.0" />
                    
Directory.Packages.props
<PackageReference Include="Pulse.Mqtt.Storage.Sqlite" />
                    
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 Pulse.Mqtt.Storage.Sqlite --version 2.29.0
                    
#r "nuget: Pulse.Mqtt.Storage.Sqlite, 2.29.0"
                    
#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 Pulse.Mqtt.Storage.Sqlite@2.29.0
                    
#: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=Pulse.Mqtt.Storage.Sqlite&version=2.29.0
                    
Install as a Cake Addin
#tool nuget:?package=Pulse.Mqtt.Storage.Sqlite&version=2.29.0
                    
Install as a Cake Tool

Pulse.Mqtt.Storage.Sqlite

Durable session and offline-message stores backed by SQLite. Use it when subscriptions, in-flight QoS state, and queued outbound publishes must survive process restarts in a local relational file store.

Install

dotnet add package Pulse.Mqtt.Storage.Sqlite

Configure with dependency injection

builder.Services
    .AddPulseMqttClient("telemetry", configure)
    .UseSessionStore(_ => new SqliteSessionStore("telemetry-session.db"))
    .UseMessageStore(_ => new SqliteMessageStore(
        "telemetry-queue.db",
        new OfflineQueueOptions
        {
            Capacity = 10_000,
            Overflow = OverflowPolicy.Block,
            IncludeQos0 = false,
        }));

Configure directly

var options = new ResilientMqttClientOptions
{
    Connect = new MqttConnectPacket
    {
        ClientId = "telemetry-worker",
        CleanStart = false,
        SessionExpiryInterval = 300,
    },
    SessionStore = new SqliteSessionStore("telemetry-session.db"),
    MessageStore = new SqliteMessageStore(
        "telemetry-queue.db",
        new OfflineQueueOptions { Capacity = 10_000 }),
};

The stores use the same ISessionStore and IMessageStore contracts as the in-memory defaults. Reconnect, publish, subscribe, and flush behavior do not change when the storage implementation changes.

Full docs: https://araxis.github.io/pulse-mqtt/packages/storage-sqlite

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 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
2.29.0 119 7/9/2026
2.29.0-preview.219 70 7/9/2026
2.29.0-preview.218 68 7/9/2026
2.29.0-preview.217 57 7/6/2026
2.28.0 113 7/6/2026
2.28.0-preview.215 64 7/6/2026
2.28.0-preview.214 60 7/6/2026
2.28.0-preview.213 62 7/6/2026
2.28.0-preview.212 61 7/6/2026
2.28.0-preview.211 64 7/4/2026
2.28.0-preview.210 63 7/4/2026
2.28.0-preview.209 67 7/4/2026
2.28.0-preview.208 69 7/4/2026
2.27.0 112 7/4/2026
2.27.0-preview.206 55 7/4/2026
2.27.0-preview.205 62 7/4/2026
2.27.0-preview.204 72 7/3/2026
2.27.0-preview.203 55 7/3/2026
2.27.0-preview.202 62 7/3/2026
2.27.0-preview.201 64 7/3/2026
Loading failed