in reply to Server status through HTTP using CGI::Push

As you've discovered, you can do this with server-push on some browers. I find that client-pull is actually a lot more prevalent. See my column on performing a traceroute using client pull.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: Server status through HTTP using CGI::Push

Replies are listed 'Best First'.
Re^2: Server status through HTTP using CGI::Push (serverpush costly)
by Aristotle (Chancellor) on Apr 15, 2003 at 19:01 UTC
    It is worth noting that server push ties up one TCP connection and one process per client, so doesn't scale very well. That's not a concern for running low traffic scripts like this one is probably meant to be, but means you can't do much else than low traffic scripts before your server starts going toes-up.

    Makeshifts last the longest.