So I'm running through a process that make a DB call and presents the
data as rows in a FlexTable.  Before that happens, I iterate through
to change styles.  Also, I'm using a LinkedList because I'm inserting
everything at element zero (many reasons why).  Now I understand that
inserting at zero is dirt slow if dealing with an array or ArrayList,
but with a LinkedList it should be fast.  And it seems to be fast when
using FF, but on IE is crazy slow.  I timed both with these number of
fetched rows:
20 rows
FF 90ms
IE 650ms

100 rows
FF 450ms
IE 9000ms

500 rows
FF  3.5 sec
IE 196 sec

I insert into a linked list (element 0) and then add the linked list
to the FlexTable.  So it's two loops, but thats not the issue.  I did
it this way because I only return rows that arent already in the
linked list, so usually it's 1 row returned and inserting that is
nothing, but on the initial time the app starts it needs to get
100-500 rows.

The plan is to deploy for IE, this is not going to be on the internet
but an in company app.
Any insight to why IE treats the linked list differently?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to