Redis
 sql >> Base de Dados >  >> NoSQL >> Redis

Servidor Pub/Sub gerenciado Redis


O mecanismo Pub/Sub que alimenta o Redis ServerEvents e o Redis MQ foi extraído e encapsulado em uma classe reutilizável que pode ser usada de forma independente para lidar com mensagens publicadas em canais específicos do Redis Pub/Sub.

RedisPubSubServer processa mensagens em uma conversa em segundo plano gerenciada que reconecta automaticamente quando a conexão do servidor redis falha e funciona como um serviço de segundo plano independente que pode ser interrompido e iniciado no comando.

A API pública é capturada na interface IRedisPubSubServer:
public interface IRedisPubSubServer : IDisposable
{
    IRedisClientsManager ClientsManager { get; }
    // What Channels it's subscribed to
    string[] Channels { get; }

    // Run once on initial StartUp
    Action OnInit { get; set; }
    // Called each time a new Connection is Started
    Action OnStart { get; set; }
    // Invoked when Connection is broken or Stopped
    Action OnStop { get; set; }
    // Invoked after Dispose()
    Action OnDispose { get; set; }

    // Fired when each message is received
    Action<string, string> OnMessage { get; set; }
    // Fired after successfully subscribing to the specified channels
    Action<string> OnUnSubscribe { get; set; }
    // Called when an exception occurs 
    Action<Exception> OnError { get; set; }
    // Called before attempting to Failover to a new redis master
    Action<IRedisPubSubServer> OnFailover { get; set; }

    int? KeepAliveRetryAfterMs { get; set; }
    // The Current Time for RedisServer
    DateTime CurrentServerTime { get; }

    // Current Status: Starting, Started, Stopping, Stopped, Disposed
    string GetStatus();
    // Different life-cycle stats
    string GetStatsDescription();
    
    // Subscribe to specified Channels and listening for new messages
    IRedisPubSubServer Start();
    // Close active Connection and stop running background thread
    void Stop();
    // Stop than Start
    void Restart();
}

Uso #


Para usar RedisPubSubServer , inicialize-o com os canais nos quais deseja se inscrever e atribua manipuladores para cada um dos eventos que deseja manipular. No mínimo, você desejará lidar com OnMessage :
var clientsManager = new PooledRedisClientManager();
var redisPubSub = new RedisPubSubServer(clientsManager, "channel-1", "channel-2") {
        OnMessage = (channel, msg) => "Received '{0}' from '{1}'".Print(msg, channel)
    }.Start();

Chamando Start() depois de inicializado, ele começará a ouvir e processar todas as mensagens publicadas nos canais inscritos.