Search code examples
actionscript-3apache-flexoffline-cachingshared-objects

Which method is better for offline storage in flex


I am Working in Mobile application In Which I need To store data in offline. I've searched in the web and found three methods to store data offline.

  1. Shared Object

  2. SQlLite Database

  3. Store in Binary File

Now, I like to know that which method is good for offline storage in flex. If I like to store large data like video, audio and also text in offline storage.

And why is that method is better for storing data?


Solution

  • I was not much used shared object, But i can tell the use of each options

    1. Shared Object used to store the data as object.
    2. SQlLite Database is used for storing textual data.
    3. Binary file is is more useful to you because it performs well and store large amount of data.