Coredata:保存大量数据时的性能问题

时间:2017-01-31 17:11:04

标签: objective-c multithreading core-data

我想在初始启动期间使用CSV文件中的一些数据填充我的应用程序数据库(50� 000条目)。然而,我遇到性能问题......现在太慢了,在模拟器中需要2-3分钟。我的上下文层次结构如下:

parentContext(单独的线程) 上下文(主线程) importContext(单独的线程)

代码:

for (NSString *row in rows){
            columns = [row componentsSeparatedByString:@";"];
            //Step 1
            Airport *newAirport = [Airport addAirportWithIcaoCode: [columns[0] stringByTrimmingCharactersInSet:
                                                                    [NSCharacterSet whitespaceCharacterSet]]
                                                             name:columns[1]
                                                         latitude:[columns[2] doubleValue]
                                                        longitude:[columns[3] doubleValue]
                                                        elevation:[columns[4] doubleValue]
                                                        continent:columns[5]
                                                          country:columns[6]
                                                      andIataCode:columns[7]
                                           inManagedObjectContext:self.cdh.importContext];
            rowCounter++;
            //Increment progress
            dispatch_async(dispatch_get_main_queue(), ^{
                [progress setProgress:rowCounter/totalRows animated:YES];
                [progress setNeedsDisplay];
            });

            // STEP 2: Save new objects to the parent context (context).
            //if(fmodf(rowCounter, batchSize)== 0) {
                NSError *error;
                if (![self.cdh.importContext save:&error]) {
                    NSLog(@"error saving %@", error);
                }
            //}

            // STEP 3: Turn objects into faults to save memory
            [self.cdh.importContext refreshObject:newAirport mergeChanges:NO];
        }

如果我在步骤2中激活批量大小为2000的if with modulo,那么当然只保存每个第2000个条目,然后性能很快。但是像这样它超级慢,我想知道为什么?我在一个单独的线程中有我的导入上下文,但它仍然非常滞后......

1 个答案:

答案 0 :(得分:0)

通常情况下,处理完所有条目后发出一个save就足够了。您不需要经常保存。只需在for循环后执行此操作即可。我看到你试图通过每次将对象变为故障来节省内存,所以这可能需要save(之前没有尝试过)。

我建议你改用@autoreleasepool让系统决定在哪里节省内存:

for (NSString *row in rows) {
    @autoreleasepool {
    // Just STEP 1 here
    ...
    }
}
NSError *error;
if (![self.cdh.importContext save:&error]) {
    NSLog(@"error saving %@", error);
}