Configuring Redis Transport - NimbusAPI/Nimbus GitHub Wiki

To use Redis as a transport you first need to install the Redis transport as a nuget package.

Install-Package Nimbus.Transports.Redis

Then you configure the transport and pass it to the Bus Builder.

var transport = new RedisTransportConfiguration().WithConnectionString(connectionString);

var bus = new BusBuilder().Configure()
                            .WithNames("MyApplication", Environment.MachineName)
                            .WithTransport(transport)
                            .WithTypesFrom(typeProvider)
                            .Build();