2

我使用 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];
4

1 回答 1

6

好吧,永远不要打电话

[context MR_save]

在一个循环中-.-

于 2012-07-10T19:49:02.833 回答