Skip to content

lulzzz/MassTransit.RedisSagas

 
 

Repository files navigation

MassTransit.RedisSagas

StackExchange Redis Saga Persistence for MassTransit

Build status

This library uses StackExchange.Redis to connect to your redis instance. Refer to the StackExchange.Redis Documentation for more detail on configuring your client.

Installation

Install using nuget: Install-Package MassTransit.RedisSagas

Usage

The repository constructor requires StackExchange.Redis.IConnectionMultiplexer this is an expensive object to create and you should hold this object or make a singleton with your container.

Using with Autofac sample

builder.Register(cx => ConnectionMultiplexer.Connect("localhost"))
.As<IConnectionMultiplexer>()
.SingleInstace();

About

Redis Saga Persistence for MassTransit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 87.5%
  • F# 11.7%
  • Batchfile 0.8%