Zeeshan Ahmed
Zeeshan Ahmed

Reputation: 1187

SignalR Vs Google Cloud messaging Vs Parse

We have a .Net based backed server and want to push messages/notifications to Mobile clients. At first we start with the google cloud messaging but it sometimes take extra time to send message. Now we are planning to use signal R but didn't know whether it will be a good move or not. Please recommend according to your experience and help to choose the best one of them for the push messages and notifications.

Upvotes: 2

Views: 887

Answers (1)

null pointer
null pointer

Reputation: 5914

Go for google cloud messaging. signalR will require a constant connection to the back end. so you will have to keep a service running in the background just to get push notification. This is a bad practice as it eats up battery. so go for GCM.

Upvotes: 3

Related Questions