我有一个同步过程,我使用 Core Data
来存储大量信息。有几次我用管理器下载了真正的 SQLite
数据库文件来检查数据是否正确。
几天前,我发现两个 SQLite
文件的大小差异很大。一个文件是 80MB,另一个文件是 100MB。当我使用 SQLite
查看器检查其中的数据时,没有任何区别。相同的表,相同的索引,相同的行。这个怎么可能?当我通过 Core Data
删除对象时,文件中是否仍有一些数据?
编辑:
解决方案是一个选项标志,可以插入一个选项 NSDictionary 并作为参数添加到 addPersistentStore 方法。
NSSQLiteManualVacuumOption
Option key to rebuild the store file, forcing a database wide defragmentation when the store is added to the coordinator.
This invokes SQLite's VACUUM command. It is ignored by stores other than the SQLite store.
出于性能原因,Sqlite 在删除数据时不会主动返回未使用的磁盘空间。这可能就是您看到差异的原因。有关详细信息,请参阅此链接:
关于objective-c - 核心数据 sqlite 文件增长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13875255/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |