Does it have to stop itself? What if someone visits my site, starts the script on the server, and then leaves (or his phone hibernates)? I'm using jQuery.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

As soon as it times out, which is usually 30-60 seconds after the script starts, but you can change it.

link|improve this answer
that's it? so for a chat script, i have to keep re-starting it every 30 seconds or so? – Michael Novello Jan 9 '11 at 1:41
You can return an empty result after about 28 seconds, or just let the script time out and make jQuery handle the error. The AJAX client should then send a new long-poll request. Wash, rinse, repeat. Anyway, thanks to the time limit, if somebody requests a long poll and just turns off his phone, you won't have a useless script running on your server for more than 30 seconds. – kijin Jan 9 '11 at 1:53
feedback

Your Answer

 
or
required, but never shown

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