Hi,
We currently use Redis as a reliable queue and implement the reliable queue pattern using various commands that ultimately block. This avoids having a weak point in the architecture involving pubsub where there is no listener available.
I have taken a look at the multiplex guidance
https://stackexchange.github.io/StackExchange.Redis/PipelinesMultiplexers
This seems strange. Is the guidance saying that publishing/subscribing is required as a work around (for no blocking calls)?
Thank you
Fig