I have a problem with a redis connection.
My clients connect to the redis server and there is async function which listens to reponses from the redis server.
Now the problem is a single client is also getting all the responses the is meant for the other client also.
Is there a way to keep these responses unqiue per client.
Here is the connection code:
Dim clientsManager As New PooledRedisClientManager ("ip:port")
redisPubSub = New RedisPubSubServer(clientsManager, paramarrayvalue) With { _
.OnMessage = Async Sub(channel, msg) Await OnMessage(msg), _
.OnError = Sub(ex) OnError(ex)
}.Start()
Any help will be much appreciated