skip to Main Content

How to avoid duplicate notifications when subscribing multiple times to the same Redis channel?

I have an issue where, if I subscribe multiple times to the same Redis channel, my subscribers start receiving duplicate messages. Here is my subscription method: public void SubscribeToUserNotifications(string userId, Action<string?> onMessage) { _subscriber.Subscribe ( new RedisChannel($"orders:notifications:user:{userId}", RedisChannel.PatternMode.Literal), (channel, message)…

VIEW QUESTION
Back To Top
Search