>What JDBC driver lets you stream data over, before the resultset/rowset 
>has finished retreving? Or is the data fast, just the "rendering" is slow?

Oh no... We only start spitting the data out once it is all available. That
takes between three and four seconds, and is a known and accepted lag.

>I do not think even Client/Server could do this nicely. Have you ever 
>seen anyone else put out an application in any design that has 2000 rows?

At my previous place of employment, we frequently retrieved more than 2000
rows (of XML data that was converted to HTML using XSLT). The data was
ultimately displayed in a tree view so not all the data was initially
visible, but it was all there, so we always had to retrieve all of it. We
did do some work on implementing lazy loading so that only the visible data
would be sent back to the browser, and only when users clicked a plus icon
to expand a node would that node's data be retrieved and added to the tree.
However, we got the code to the point where performance was acceptable
without lazy loading.

Now that I think about it, percieved performance might have been considered
acceptable because we didn't use any tables to position it.

Cheers...

Dave

Davide Bruzzone wrote:
> Lots of very ugly scriptlet code... :-)
> 
> -----Original Message-----
> From: V. Cekvenich [mailto:vicc@;users.sourceforge.net]
> Sent: Friday, November 01, 2002 2:32 PM
> To: [EMAIL PROTECTED]
> Subject: Re: WebLogic/Struts/JSP performance woes...
> 
> 
> How would you solve this w/o Struts?
> .V
> 
> Davide Bruzzone wrote:
> 
>>Greetings all...
>>
>>I'd like to try to find out if anyone else out there is using WebLogic
>>(We're using version 6.1 SP2) with Struts and/or just JSPs that might have
>>some performance tips that they might be able to share...
> 
> 
> <Snip>




--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>

--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Reply via email to