GVillani82
GVillani82

Reputation: 17429

Google Cloud Messaging vs RabbitMQ

I need to use a PUSH notification system for my Android application. I know that the most known service is Google Cloud Messaging (GCM). But there are others messaging system like RabbitMQ, that is based on the AMQP standard, and that simply allows to build PUSH notification service.

So, the question is, what are the advantages (and/or drawbacks) of using GCM, than RabbitMQ (or others messaging system) ?

Upvotes: 3

Views: 2579

Answers (1)

guy_fawkes
guy_fawkes

Reputation: 965

If we are developing Push messaging with RabbitMQ, you have to write the pub sub service on android. On server side, to be connected to many more devices using pubsub you have to a cluster of rabbitmq servers. If you are using GCM, you dont have to do all those mentioned. Google does this for you.

Upvotes: 1

Related Questions