Question

I've been writing a game in JavaScript, and it's time to make it multiplayer. I would like to use AJAX long-polling to get the current game state, as well as implement the lobby.

The server just needs to perform basic functions, like store the gamestate in the mysql database, retrieve the gamestate, and format the scoreboard.

I think that writing it in PHP would be easiest, but that would be a bad idea due to the number of apache processes it would spawn.

What do you recommend? I'm looking for the most straightforward approach.

Edit: StreamHub seems good, but the community edition only allows for 10 concurrent users.

Was it helpful?

Solution

OTHER TIPS

You'd probably be interested by something called Comet.

About Comet and PHP, you can take a look at these questions and their answers :

And, not necessarily in PHP (which doesn't seem to be that adapted for Comet ; many people seem to recommend using another language / technology for the backend server...) :

I'm seeing more and more of those Comet questions... I'm going to try one day or another, I think... Seems fun ^^

Maybe better to use push-channel like juggernaut.rubyforge.org, rather than longpoll?

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