4
I’ve heard a lot about Messagequeue, and I’ve never used it in practice. But before that, I would like to know what is the need and your purpose of using an MQ. Thinking about scalability and performance.
Sometimes I get confused with cache storage, as well as memcached and redis, where I can use Pub/Sub.
Redis and Memcache are more systems used to generate Object Cache and database queries which have nothing to do with Messagequeue , which as the name says, is a Message Queue manager. They are very different things. Mqs are usually used for asynchronous processing but need to obey a certain order. Although Redis supports the Pub/Sub paradigm, those who need this type of technology usually use JMS or IBM MQ.
– Marcos Regis