I've been playing around with the Google App Engine channel API to create a real-time multiplayer game similar to http://rawkets.com/. Since this API is basically "one way" (doesn't enable a persistent browser-to-server connection), I am just issuing new AJAX POST requests (JQuery) at about 30/second.

It seems to be generating a large overhead (5-6kb/second), which I would like to reduce if possible. Ideally I would like to create only one connection that lasts a bit less than 30 seconds (the appengine request timeout) and continues to send fresh data every 30 milliseconds for the duration of the connection. The server would then use the channel API to "spread the word" to all other relevant clients. Hope this makes some sense!

Any ideas?

link|improve this question
Read up about COMET, which is basically like a HTTP request, except that the server takes very long to respond (i.e. keeps the connection open) – David Freitas Jul 5 '11 at 6:54
feedback

4 Answers

There are two major problems with creating long-lived connections yourself.

  1. You can't stream output from the server, it will be buffered then sent when the handler exits.
  2. Your app will not be auto-scaled if your requests do not return in under 1,000ms.

As sje397 mentions, the Channel API currently does not support general broadcast -- you would need to implement your own. However, if you are just trying to push to several nearby players, implementing your own solution may not be an issue.

What are you attempting to do every 30ms? You'll need a very well thought-out design, just reading and setting a value in memcache is going to consume close to half of that time. If you need to query the datastore, you'll probably be over that.

link|improve this answer
feedback

Broadcast doesn't work too well using the built-in channel API (although they have said on the mailing list that something is in the works).

You might want to check out a third-party 'real' websockets provider. For example, http://pusherapp.com.

link|improve this answer
feedback

This simply isn't how HTTP works - it sounds like what you want is closer to the (forthcoming) websockets API, which isn't widely supported in browsers yet, or supported at all by App Engine.

Still, 30 requests per second per client seems particularly absurdly high - there's no way a single user on a keyboard can generate that many events.

link|improve this answer
feedback

Thanks everyone. For some reason I can't comment on your answers, but I'm the one who posted this question. From your answers I'm guessing that I'll just have

Channel API currently does not support general broadcast" etc..

I'm aware of this, but it shouldn't be a problem for my app most of the time, as I'm just "broadcasting" to nearby clients, as someone mentioned above.

Still, 30 requests per second per client seems particularly absurdly high

Whoops. It actually maxes out at 5-6 per second when a player is very active (the canvas is redrawn every 30ms, but no data is sent to the server). I'm thinking of ways to reduce this even further.

You can't stream output from the server, it will be buffered then sent when the handler exits.

In my case, the server doesn't send anything back. It works like this:

Client =(AJAX)=> Server =(Channel API)=> Clients of nearby players

But I gather that what I was imagining is not really possible (except in the future with websockets), so thanks again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.