Re: [flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-14 Thread Tom Chiverton
On Monday 12 Nov 2007, letterpigeon wrote: will have to go in and change the broker code 1 by 1 that could take them hours. Therefore, the ability for our users to perform mass actions on the dataset (either client side or server side) would be a huge win for us. So there's no need to wait

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-14 Thread letterpigeon
Hi William, I've thought of this idea, and actually tested the capacity of the client. I loaded up dummy data on the client side and it can easily take up to 1mil records (though filtering could take a few seconds). The problem is how do I send that much of data from the server side. I'm using

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-12 Thread letterpigeon
Hi all, Thanks for all your responses. Maybe it'll be better if I described our use case in bit more in details. Our users send us trade file (sometimes has ~50K trades in it currently). And let say all of the trades have an invalid broker code, and all got kicked out, the user will have to go

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-12 Thread Abyss Knight
Have you considered paging the dataset in the ActionScript, but applying the operations to the original ArrayCollection/Dataset? What I mean is, although the grid may only show say 15 records at a time, the dataset is still stored as an AS object and could be adjusted client side, and the current

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-09 Thread lytvynyuk
Personally i think it very bad idea, can you imagine sort/search 1M records at client, how fast it will be ? What if you decided to do full text search by pattern? your client will die! Can you image how much memory it will consume at client side? best way to do is - smart server querying,

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-09 Thread lytvynyuk
BTW, according to my personal experience flash player unable to handle more that 10K records in data grid. Just physically unable - out of memory error! --- In flexcoders@yahoogroups.com, letterpigeon [EMAIL PROTECTED] wrote: Hi all, We've built a flex grid that supports mass action on its

RE: [flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-09 Thread Gordon Smith
, 2007 12:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex grid to serve 100K-1mil rows BTW, according to my personal experience flash player unable to handle more that 10K records in data grid. Just physically unable - out of memory error! --- In flexcoders@yahoogroups.com