2

iOS 数据库比较:SQLite vs. Core Data vs. Realm

 2 years ago
source link: https://www.oschina.net/translate/ios-databases-sqllite-vs-core-data-vs-realm?cmp=
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

iOS 数据库比较:SQLite vs. Core Data vs. Realm

If you want to make a great app that runs fast and just works (no bugs allowed) you’ll have to think about all development aspects of your app carefully. One of the aspects you must figure out is how to store and search for large amounts of data, so you’ll probably use a database. The most common options for iOS databases are SQLite and Core Data, plus a relatively newer player called Realm.

This article covers the pros and cons of each option and discusses the process of switching to Realm if you are already using SQLite or Core Data.

如果你想开发一个能够快速运行并没有Bug的伟大应用,你就必须得仔细的考虑一下你的应用的各个方面。有这么一个你必须解决的方面是怎样存储和查询大数据,那么你就很可能会使用到数据库。在大多数情况下,IOS 数据库都会选择SQLite和Core Data,还有一个相对较新的数据库Realm。

这篇文章讲述了每种选择的优缺点,并讨论了如果你已经使用了SQLite 或 Core Data,那么怎么转换到Realm的过程。

SQLite

SQLite is the most used database engine in the world and its open source as well. It implements a transactional SQL database engine with no configuration and no server required. SQLite is accessible on Mac OS-X, iOS, Android, Linux, and Windows.

It delivers a simple and user-friendly programming interface as it is written in ANSI-C. SQLite is also very small and light and the complete database can be stored in one cross-platform disk file.

The reasons for the great popularity of SQLite are its:

  • Independence from a server

  • Zero-configuration

  • Safe access from multiple processes and threads

  • Stores data in tables with one or more columns that contain a specific type of data

SQLite

SQLite是在世界上使用的最多的数据库引擎,并且还是开源的。它实现了无配置,无服务要求的事务数据库引擎。SQLite可以在Mac OS-X, iOS, Android, Linux, 和 Windows上使用.

由于它是使用ANSI-C开发的,因此它提供了一个简单的,方便使用的编程接口。SQLite也是一个小的,轻量级的,可以被存储在跨平台磁盘文件的完善的数据库。

SQLite之所以这么流行的原因是:

  • 独立于服务器

  • 多进程和线程下安全访问。

  • 在表中使用含有特殊数据类型的一列或多列存储数据。

Core Data

Core Data is the second main iOS storage technology available to app developers. Depending on the type of data and the amount of data you need to manage and store, both SQLite and Core Data have their pros and cons. Core Data focuses more on objects than the traditional table database methods. With Core Data, you are actually storing contents of an object which is represented by a class in Objective-C.

Although they are fundamentally different, Core data:

  • Uses more memory than SQLite

  • Uses more storage space than SQLite

  • Faster in fetching records than SQLite

Core Data

Core Data 是App开发者可以使用的第二大主要的IOS存储技术。你需要根据数据类型和数据量进行管理和存储,SQLite和Core Data都有它们各自的优缺点。Core Data 更加关注于对象而不是传统的表数据库方法。使用Core Data,你可以存储一个Objective-C类的对象。

尽管它们从本质上不相同,但是Core data::

  • 比SQLite使用更多的内存。

  • 比SQLite使用更多的存储空间。

  • 比SQLite在取数据方面更快。

Realm 

There’s a new(ish) player in town called Realm. Realm was designed to be faster and more efficient than the previous database solutions. This new solution is a cross-platform mobile database called Realm. It is available in Objective-C and Swift, and it’s designed for iOS and Android.

The major upsides of Realm are:

  • It’s absolutely free of charge

  • Fast, and easy to use

  • Unlimited use

  • Works on its own persistence engine for speed and performance

Realm 

Realm 是个新技术。Realm天生比前面提到的数据库解决方案更快,更高效。新的解决方案就叫做Realm,它是一个跨平台的移动数据库。它可以在Objective-C 和Swift中使用,并且它是专门为 iOS 和 Android设计的数据库。

Realm最主要的优势是:

  •  快速,简单的使用

  • 没有使用限制

  • 为了速度和性能,运行在自己的持久化引擎上。

What’s really great about it is that you can handle all the work with a couple of lines of code. Realm is very easy to install and faster to work with compared to SQLite and Core Data. Also, the database files are shareable among iOS and Android.

If you are designing an app with a lot of records and for a large number of users, you need to pay special attention to scalability from the very beginning. Realm is great at this and it allows you to handle a lot of data fast.

To get started with Realm, all you need is at least iOS 8 or OS X 10.9. Older versions don’t support this new straightforward solution for managing local storage and databases.

Realm 的最大亮点是仅仅用一两行代码就能解决所有问题。Realm易于安装,并且运行速度比SQLite 和 Core Data都快。而且数据库文件即可以在IOS上使用,也可以在Android上使用。

如果你的App的数据量很大,并且用户的使用量也很大,那么你就得在起步时就特别注意可测量性这一方面。Realm就是这方面最好的选择,并它可以让你快速的处理大量数据。

要想使用Realm,只需要iOS 8 或 OS X 10.9以上的系统就可以了。旧的系统还不支持这种新的直接了当的管理本地存储和数据库的解决方式。

Switching To Realm

If you have been working with Core Data and you want to move on to Realm, the process is straightforward. Many developers have made the journey in a couple hours. Note that both Core Data and Realm treat data as objects so what you need to do is refactor the Core Data code to use Realm.

Realm has outlined the process thoroughly, but here is a summary:

  • Remove the Core Data Framework. Locate the parts of your code that include Core Data code and refactor them.  They outline a nice trick to throw a compiler error for each line of code using Core Data

  • Remove the Core Data Setup Code. There’s going to be a portion of Core Data setup code somewhere in your app and you need to get rid of it all. Realm is automatically configured as soon as you access a Realm object for the first time. You can choose where you want to store the Realm data file, and it will still be optional at runtime.

  • Migrate Your Model Files. You can easily convert managed object subclasses to Realm. Realm manages property keywords internally (you don’t have to specify them), which makes the class header look more minimal. Also, you can safely remove all NSNumber cruft because Realm supports simple numerical data (NSInteger and CGFloat). There are also limitations to Realm. Unlike Core Data whose objects have NSManagedObjectID to identify objects uniquely, Realm leaves this up to you as the developer. Secondly, the current version of Realm can’t deal with object properties with a nil value. This is a minor inconvenience, but the developers are promising that the next version of Realm won’t have this problem.

  • Migrating Your Write Operations. Realm’s save operations are a little different than in Core Data and you need to get familiar with this. Once the Realm objects are added to a Realm object, they can’t be modified. This ensures consistency of data in different threads. To be able to modify the properties, the object where these were saved needs to be in a 'write' transaction.

  • Migrate Your Queries to be able to retrieve your data as needed. To fetch a file, in Core Data you need approximately 10 lines of code. In Realm, you can do the same thing with just one line.

  • Migrate Your Users’ Production Data for active apps created in Core Data, you can re-link the Core Data framework back into the app, fetch user’s data and pass it on to Realm. An easier solution for replaceable users’ data is to remove all Core Data save files and start over the next time the app is open.

The key is to keep your design process simple with the best techniques and tools. Once you’ve invested time to set up your tried and true process, don’t let the "attraction to new" take you off course. May "the new" work to be a part of your process, and let time decide what is not worthy.  

切换到Realm

如果你已经使用了Core Data,并且你想转换到Realm,过程很简单。很多开发者用了一两小时就完成了。注意Core Data 和 Realm 都是以对象的形式处理数据的,因此你只需要重构Core Data 代码,使用Realm就可以了。

Realm已经概括了切换的过程, 这里是我对它的总结:

  • 移除Core Data 框架。定位你代码中包含Core Data 代码的部分,然后重构。它们总结了一个很好的方法来帮助使用 Core Data的每一行代码抛出编译错误。

  • 移除Core Data 安装部分的代码。 你的应用里的某个地方一定有Core Data 安装代码的部分,你必须彻底的移除掉Core Data 。Realm在你第一次访问Realm对象的时候就会立马自动配置。你可以选择你想存储Realm数据文件的位置,但在运行时,你仍然可以选择。

  • 迁移你的模型文件你可以可容易的转换管理对象的子类到Realm。Realm为了让类标头看起来更小些,在内部管理属性关键词(你不必自己指定它们)。你可以安全的去掉所有NSNumber的东西,因为Realm支持简单的数值类型(NSInteger和CGFloat)。但是Realm也有一些限制。不像Core Data的数据对象使用NSManagedObjectID来确定对象的唯一性,Realm把这个交给开发人员来管理。第二,当前版本的Realm还不能处理含有nil值的对象属性。这是一个小问题,但是在下一个版本里开发人员有望解决这个问题。

  • 迁移你的写操作。Realm的保存操作和Core Data 有一点不相同的地方,你得了解这个问题,一旦把Realm数据对象添加到Realm对象,就不能被修改了。这确保了数据在不同线程下的一致性。为了能够修改属性。这些被保存的对象必须在’写’的事务里。

  • 迁移你的查询, 让你的查询,在需要时可以检索到你的数据。在Core Data里,为了取一个文件,你需要写将近10行的代码。但是在Realm里仅仅需要一行就够了。

  • 迁移用户在Core Data里产生数据,你可以在应用里重新连接Core Data框架,然后用它去数据,传递给Realm。对于那些可替代的用户数据有一个简单的解决方案就是删除所有的Core Data 保存文件,下次应用启动的时候重新开始。

关键是要在使用最好的技术和工具的时候保持你设计的流程简单。一旦你花费时间在建立了你的行之有效的流程,就不要让“新的吸引力”带你走。让“新的”成为你的流程的一部分,然后让时间决定是否值得。


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK