Jarek
Results
1
comments of
Jarek
Just check with plain StackExchange.Redis and it works ok: ```csharp var conf = new ConfigurationOptions { ChannelPrefix = "AAA-", EndPoints = {"localhost:6379"} }; var con = ConnectionMultiplexer.Connect(conf); con.GetDatabase().Publish("channel", "message"); ```...