我使用MagicalRecord,并且必须一次在数据库中插入几条记录(大约50条)。这大约需要3秒钟。这些插页是正常时间吗?我可以加快速度吗?我也想知道为什么我在后台和主线程中得到一条保存语句...
保存每个元素,我都会得到以下日志:
2012-07-10 21:27:55.319 MyApp[9815:1b53] -[NSManagedObjectContext(MagicalSaves) MR_saveWithErrorCallback:](0x47f2e0) -> Saving <NSManagedObjectContext: 0x47f2e0>: *** BACKGROUND SAVE *** Context
2012-07-10 21:28:13.024 MyApp[9815:707] -[NSManagedObjectContext(MagicalSaves) MR_saveWithErrorCallback:](0x480310) -> Saving <NSManagedObjectContext: 0x480310>: *** DEFAULT *** Context *** MAIN THREAD ***
上下文是默认上下文:
NSManagedObjectContext *context = [NSManagedObjectContext MR_defaultContext];
插入代码如下所示:
theWord = [Word MR_createEntity];
theWord.text = aCard.word;
theWord.playCount = [NSNumber numberWithInt:0];
theWord.user = user;
[context MR_save];
最佳答案
好吧,永远不要打电话
[context MR_save]
循环-.-
关于objective-c - MagicalRecord插入太慢,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11420579/