RE: [flexcoders] any ideas about flex client side caching?

2005-04-14 Thread Abdul Qabiz
Hi, You can cache object on client in SharedObject. So you can serialize a class to SharedObject on client and later deserialize to use in application. For example, you fetch a huge dataset from server(via xml, http or remoteobject), you can serialize it to SharedObject and show a part of it in

Re: [flexcoders] any ideas about flex client side caching?

2005-04-14 Thread Matthew Shirey
Just be careful about how much you store in the SharedObject. By default the client is set to accept up to 100k A 'Huge' dataset might exceed that. If you exceed that about I think the client then asks the user if more space can be allocated. I've just started using a SharedObject; I'm a little