plist or sqlite

后端 未结 2 868
北荒
北荒 2020-12-18 00:03

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 th

相关标签:
2条回答
  • 2020-12-18 00:22

    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

    0 讨论(0)
  • 2020-12-18 00:33

    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.

    0 讨论(0)
提交回复
热议问题