in reply to Autoflush and web browsers (was: Clever autoflush detail)

Its something in CGI.pm.

To wit:

#!/usr/bin/perl -w $|++; { print "Content-Type:text/html\n\n"; print "Autoflush is currently ".($|?"on":"off").".\n"; for ( 1..5 ) { print "Value is $_.\n"; sleep 1; } print "Autoflush is currently ".($|?"on":"off").".\n"; }

I don't have time to look exactly - but likely caching or something else. Take a look at the raw headers. blahblah

Replies are listed 'Best First'.
Re^2: Clever autoflush detail
by Joost (Canon) on Jun 20, 2007 at 19:30 UTC