vote up 0 vote down star

Hi everyone,

I want to implement a bbg which supported large number of members and provided realtime actions.

My current game hasbeen running but its seems burn out shortly.

The method I'm using is polling. I guess the waste of idle user make server burn out (server is in C# and client is Javascript)

How can I do to solve this?

thethanghn

flag

11% accept rate

2 Answers

vote up 0 vote down

If you want something to react in realtime, polling isn't going to do the job. Your going to need to use some sort of persistent connection via long running http connections or something. (Comet)

link|flag
I did research about Comet. But it seems that it cannot handle multiple request quite well. I wonder how to implement comet? – thethanghn Jun 18 at 8:25
vote up 0 vote down

Persistent connections/polling in HTTP can be tricky and as you point out, not very efficient anyway. I'd suggest migrating to a plugin based game that supports server-pushed messages. Maybe Unity since it is basically designed for games but Flash if you want something more ubiquitous.

If you really want to stick with HTML a hybrid solution may work, passing messages via the plugin and rewriting the DOM on responses.

link|flag
which plugin I can use ? – thethanghn Jun 18 at 8:26
flash, silverlight, java and unity should all do what you need. – SpliFF Jun 18 at 9:21

Your Answer

Get an OpenID
or

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