views:

611

answers:

2
+3  Q: 

plist or sqlite

I have to store a huge amount of data on IPhone then sort and search it as per requirement. Can anyone suggest to me which of SQLite or plist should I use?

I was thinking of using SQLite. Which of plist and SQLite takes less processing time in searching and sorting?

If some one has some reference guide then let me know.

Regards

+3  A: 

I have not compared the performance of plist vs sqlite, but if you are storing "huge data" as you say then you will benefit from sqlite. Especially if you are going to be performing complex queries, extraction, searching and sorting etc..

From your breif description I would recommend SQLite, but I can't answer your question regarding performance.

Regarding an example on who to use SQLite on the iphone. Apple has a sample on how to do it here

hhafez
+5  A: 

Plist and SQLite have different use cases.

PList is a file format used to store a small amount of structural data (less than a few hundred kilobytes), typically a dictionary. PList doesn't have sorting capabilities in and of itself, although code can easily be written to sort it.

SQLite is a full-fledged database. File sizes (on an iphone) are essentially unlimited. Sorting capabilities are built in. Querying and relational table designs are possible. Performance should be as good as any sorting algorithm you might come up with.

Robert Harvey