Android persistence alternative to SQLite

旧街凉风 提交于 2019-12-04 00:56:00

If you need just a simple store for a couple key/value pairs, SharedPreferences is the way to go. If you are looking for something more powerful, that compares to Core Data, you should give greenDAO a try. Like Core Data, greenDAO a layer between your objects and the data store (Core Data on iOS usually takes SQLite, too).

I don't know anything about iOS but take a look at SharedPreferences

There are a few different methods for persisting data in Android. Read this Android article about it.

You could look at http://jdbm.sourceforge.net/: 78kb jar, transactions, will save to a file.

You could serialize to xml. Take a look at Simple http://simple.sourceforge.net/ it's less then 500kb in size.

There are three recommended methods to store data of your Android application ( according to Android docs).

  1. If you need to save settings, configurations, user credentials You could use SharedPreferences. Pros: The data saved in SharedPreferences are comparably better than static global variable. Because it is thread safe, data will not go away even after killing the app.

  2. If you need to save big data ( e.g. accelerometer data, gps data), which is frequent, you could use SQLite database.

  3. However if you just store big data but process them rarely, it would be better to save to a file. But make sure to cache data and save/append to a file at once ( Because I/O operations are CPU intensive and drains more power).

Exist a alternative call REALM is a complete library to manage the database like objects, similar to ActiveRecord (in Ruby on Rails). And one of his advantage is the speed in transactions. But be carefull because is a new library maybe is a good idea first read the all documentation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!