Is there any data available about the performance of Java applets is Netscape browsers versus those in IE browsers? Don't want to start a war here, but I'm curious if there are any benchmarks, and if any scientific surveys have been done, and what they results were.
With Respect, Matt
Jack Shirazi
Author
Ranch Hand
Joined: Oct 26, 2000
Posts: 96
posted
0
There's some old tests done by Mark Roulo. Check the resources page at my site where I've got a link to his report.
Paul Wetzel
Ranch Hand
Joined: Nov 02, 1999
Posts: 107
posted
0
This isn't related to applets but...I have seen preformance degradation with jsp returning large amounts of html/data in Netscape. IE displays the data much quicker. Has anyone else seen this and does anyone have a reason why. paul
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6911
posted
0
Part of the reason for this is often due to heavy use of tables. Netscape prefers to wait for all table data to be loaded before displaying anything, IE prefers to have a go at it, and adjust the layout later if it is wrong. For typical data-driven pages with a long table of data this can make a big difference. The fix is the same as for static table pages. Hard code all image sizes using width and height, hard code table and cell widths, and if it is still too slow, consider breaking the table up into lots of little independent tables which "happen" to have the same width and columns.
That is very interesting. I wonder if I should code my tables so that every so often I end the table and start a new one. The site I am working on currently has an admin side that will list a table full of events, which could be very looooong. I guess that it only works if you are not nesting tables. I may run some test to see what the speed up is and report back. thanks paul