Search code examples
iphoneios4sqliteplist

Is it better to store data in plist or Sqlite database?


In my iPhone app, I have large amount of data i.e. around 1000 pages of text.

Where should I do to store them?

Should I use plist or Sqlite Database table?

Which of them would prove to be more efficient?

Please Help and Suggest.

Thanks in Advance.


Solution

  • For big amount of data, sqlite or coreData are better because all data are not load in memory to access to one.
    With pList, entire file is read in memory. After, you can retain only data what you want, but it is not optimized.