How to reduce the size of an sqlite3 database for iphone?

后端 未结 11 1681
没有蜡笔的小新
没有蜡笔的小新 2020-12-31 20:06

edit: many thanks for all the answers. Here are the results after applying the optimisations so far:

  • Switching to sorting the characters and run l
11条回答
  •  长发绾君心
    2020-12-31 20:48

    Remove the indexes on sowpods and twl -- they are probably not helping your query times and are definitely taking lots of space.

    You can get stats on the database using sqlite3_analyzer from the SQLite downloads page.

提交回复
热议问题