Scaling a chat app - short polling vs. long polling (AJAX, PHP) Scaling a chat app - short polling vs. long polling (AJAX, PHP) php php

Scaling a chat app - short polling vs. long polling (AJAX, PHP)


A few notes:

  • Polling every second is overkill. The app will still feel very responsive with a few seconds of delay between checks.
  • To save your db's traffic and speed responses, consider using an in memory cache to store undelivered messages. You could still persist messages to the db, the in memory cache would simply be used for queries for new messages to avoid queries to the db every x seconds by each user.
  • Timeout the user's chat after x seconds of inactivity to stop polling to your server. This assures someone leaving a window open won't continue to generate traffic. Offer a simple "Still there? Continue chatting." link for sessions that timeout and warn the user before the timeout so they can extend the timeout.
  • I'd suggest starting out with polling rather than comet/long polling/sockets. Polling is simple to build and support and will likely scale just fine in the short-term. If you get a lot of traffic you can throw hardware and a load balancer at the problem to scale. The entire web is based on polling - polling most certainly scales. There's a point where the complexity of alternatives like comet/long polling/etc make sense, but you need a lot of traffic before the extra development time/complexity are justified.


This is something everyone did once upon a time before the introduction of cometd and nodejs.

The issue as I see it is PHP requests on Apache are very expensive. If your chat application checks for messages every second you will find yourself in a situation where Apache does not have enough resources to respond to requests. The other area I think needs improvement is to improve the context of your chat application.

Why does it update every second if not to retrieve new messages? What if there are no messages?

Some techniques you can use;

  • Provide a light-weight endpoint to your clients that has some context about the chat session, is a new message pending, how many messages etc. The client can respond to this by updating immediately or not if there are no new messages. This endpoint can provide a simple json object via http request. You are guaranteed that this status message will be a fixed size and if the response of the status does not change you can decay it. See next message.

  • A simple decay in your javascript polling, if the client receives the same response from the server a few times in a row you can increment the poll by a set time, at present you said it was every second. If you did this you would increment to every 2,4,6,8,10 seconds. As soon as the response from the server changes you reset the decay.

Some optimizations to consider;

  • Use a PHP Opcode cache like APC.

  • Set a low timeout on all requests, you do not want any requests to hang your server.

  • Optimize your PHP code, make it lean and fast.

  • Run some load tests to see what your limits are.

  • Benchmark performance often to make sure your applications is getting faster.

  • Check apache logs for tell tale signs of overall health of the application and response times.

When scaling becomes necessary, add a new server and use a load balancer to distribute requests. I have used Varnish and HAProxy with great success, setting them up is not complicated either.


If i were you i'd pick a library that uses html5 web sockets yet falls back on flash sockets if html5 isn't available, the browser that fall through the crack should be minute.

Also you should either abandon php or supplement it with a threaded socket server written either in python or ruby with em-websocket.