Hi everyone,
We’ve just released NServiceBus.Transport.NonDurable 1.0.0.
What’s new
The Non-Durable Transport exchanges NServiceBus messages in memory, with no external infrastructure required. Multiple endpoints in the same process automatically share a single in-memory broker, so they communicate without additional configuration. This makes the transport exceptionally fast and ideal when throughput matters more than durability. Messages are held only in process memory and are lost when the process ends, so this transport works best when data loss on restart is acceptable. When paired with Non-Durable Persistence, both transport and persistence can share transactions, so saga updates and outgoing messages commit atomically. Typical use cases include automated testing, local development, and webhook integrations that dispatch work to a local queue.
Where to get it
You can install NServiceBus.Transport.NonDurable 1.0.0 from NuGet.
Please read our release policy for more details.
With thanks,
The team in Particular