Carlos Mendes - 489 - Feb 10, 2014

We are considering using Message Queues and PUB/SUB in our app. Any rules of thumb to choose between Redis and RabbitMQ? 

RabbitMQ has explicit Acks/Naks which prevents losing messages that ServiceStack is currently processing if it ever dies. Otherwise RedisMQ allows 1 less infrastructure dependency if you’re already using Redis :slight_smile:

Carlos Mendes:

Many thanks