I handle events from Redis with 3 machine. But I don't want that if any events handle by x machine, other machines won't handle it.
I work on nodejs. I use subscribe method for handling.
Redis.psubscribe('__keyevent@0__:incrby...
I see How to make sure my event is handled by only one instance of my app? and Competing Consumer on Redis Pub/Sub supported?, but they are really old. There may be better way.