Can SQLite handle large amount of data

前端 未结 3 1264
感情败类
感情败类 2021-01-22 13:52

I will be making a mobile application in Android. My application is like Google Map\'s Get Direction feature, but a lot more complex, so I need to store data about points in the

相关标签:
3条回答
  • 2021-01-22 14:28

    I think the best way to find out is to write a simple app that simulates the types of transactions you'll be doing and see how it does.

    You might also want to compare how SQLite does to an object database like db4o, which is very performant and used very often as an embedded database (and can easily handle gigs of data).

    0 讨论(0)
  • 2021-01-22 14:32

    I'd read this section of the manual, and also this one.

    0 讨论(0)
  • 2021-01-22 14:34

    SQLite can handle large amount of data, the problem here is the device's limits. If you are going to store 3MB or more you should consider saving that data in an external server and access it via the Internet. In fact, when you are building an application that use large amount of data, usually the application don't use all data all the time, so you can save in cache (in a local database) the data that the app is currently using or is about to use.

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