pereinar 2002/10/16 07:22:01
Modified: src/docs/1.0/guide Changes.pod performance.pod
Log:
Note about browser not rendering immediately even under $|=1
Submitted by: Lee Goddard <[EMAIL PROTECTED]>
Revision Changes Path
1.34 +5 -0 modperl-docs/src/docs/1.0/guide/Changes.pod
Index: Changes.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/Changes.pod,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- Changes.pod 14 Oct 2002 09:33:54 -0000 1.33
+++ Changes.pod 16 Oct 2002 14:22:00 -0000 1.34
@@ -26,6 +26,11 @@
o Added some Apache::Cookie login page example with internal
redirects. [Alan Bailward, <alan (at) ufies.org>]
+* performance.pod
+
+ o Note about browser not rendering immediately even under $|=1.
+ [Lee Goddard <home (at) LeeGoddard.com>]
+
=head1 Jul 14 2002 ver 1.32
* snippets.pod:
1.22 +10 -0 modperl-docs/src/docs/1.0/guide/performance.pod
Index: performance.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/performance.pod,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- performance.pod 31 Jul 2002 14:44:19 -0000 1.21
+++ performance.pod 16 Oct 2002 14:22:00 -0000 1.22
@@ -4241,6 +4241,16 @@
B<Conclusion>: Do not blindly follow suggestions, but think what is best for
you in each case.
+B<Note:> It might happen that some browsers do not render the page
+before they have received a significant amount. This is especially
+true if you insert C<E<lt>linkE<lt>> or C<E<lt>scriptE<gt>> tags in
+your HTML header that require the browser to load a separate file. In
+that case, the user won't be able to see the content at once, no
+matter if you flush the buffers or not.
+
+A workaround for this might be to use an output filter that replaces
+these tags with the files they refer to.
+
=head2 Global vs. Fully Qualified Variables
It's always a good idea to avoid using global variables where it's
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]