not really modperl related....but

break up your data into smaller tables. If all your data is inside on gigantic table, the
browser will have to wait till it receives the end of table tag, regardless if you flush.
by sending small  tables at a time, the browser will get enough data to render the table

Example;

Slow:

<table>
...
...
...
</table>

Fast:

<table>...</table>
<table>...</table>
<table>...</table>

-Carlos
 
 

[EMAIL PROTECTED] wrote:

Hi

I am using the CGI table function to print tables;

These tables can become quite large.
The html result is generated in a single print.
So using $| to show some output to the user is not of any use since it
works after every print..

I find the table function convenient, so I was hoping for another way of
flushing the output.

Clues?

Arnold

-- 
-----------------------------------------------------------------------
 Carlos Ramirez  +  Boeing  +  Reusable Space Systems  +  714.372.4181
-----------------------------------------------------------------------
 


Reply via email to