Question

I made an expensive mistake of building an Rails application using the Pusher service, because we wanted to work around the complexities of HTTP push. We are sending less than 500 events per day (without contents), but as we have to make the complete site HTTPS-only, we would have to go with a 50USD per month plan.

Are there any alternatives to Pusher with a more reasonable, pay-as-you go pricing model?

Was it helpful?

Solution

There's a whole host of self hosted realtime web technologies available including Slanger and poxa that allow Pusher's client and server libraries to be used. Slanger and Poxa are open source server implementations of the Pusher protocol. Slanger is written in Ruby and Poxa in Elixir.

Of course, Pusher removes the hassle of installation and maintenance, has a whole host of server and client libraries, massively reduces resource usage (since you're outsourcing the realtime communications layer), has a great community of users, and of course handles scaling problems

OTHER TIPS

PieSocket works great and provides more free quota than Pusher.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top