I am considering few options for pushing data from server to the client for my web application in real time.
I have implemented a polling based (each client sends http requests to the server after every 30 secs.) application which really doesn't scale up after 10 users are in. This app. is built using MySQL, PHP, HTML and jQuery.
Kindly suggest which one would be better considering the requirements below - APE Vs node.js
- Should be able to handle at least 400 concurrent connections at a time
- Server should be able to push data to all these clients.
- Clients would be sending across data between each other.