How to 'PSUBSCRIBE' in Redis driver

Hey,

I can see how to use RedisPubSubServer quite simply, but it doesn’t seem to support PSUBSCRIBE.

Is there a way to subscribe to pub/sub topics via pattern?

Thanks

You can use the ChannellsMatching property, e.g:

var sentinePubSub = new RedisPubSubServer(redisManager)
{
    ChannelsMatching = new[] { "channels.*" },
};