我正在尝试执行相当大的CoreData导入(大约25,000行),同时仍然保持相当低的内存占用。我已经阅读了有关数据有效导入的文档,并努力实现那里建议的所有内容(包括将我的MOC的undoManager设置为nil)。
不幸的是,运行以下代码时,我的应用程序内存使用量仍然会增加到180MB左右。完成后,无论最终的NSAutoreleasePool排放呼叫如何,申请都将保持在180MB左右。
通过分配运行应用程序表明,95%的内存使用量可归因于我的[self.moc save:&error]
呼叫。我在这里做错了什么?
- (void)generateCache
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSUInteger count = 0, batchSize = 1000;
// SNIP SNIP
// Iterate over our directory structure
for(NSString *item in directoryStructure)
{
NSDictionary *info = [fm attributesOfItemAtPath:item error:nil];
FileRecord *record = (FileRecord *)[NSEntityDescription insertNewObjectForEntityForName:@"FileRecord" inManagedObjectContext:self.moc];
record.size = [NSNumber numberWithUnsignedLongLong:[info fileSize]];
record.path = item;
count ++;
if(count == batchSize)
{
NSError *error = nil;
if([self.moc save:&error])
{
NSLog(@"MOC saved down and reset");
[self.moc reset];
[pool drain];
pool = [[NSAutoreleasePool alloc] init];
count = 0;
}
}
}
// Perform any necessary last minute MOC saves
if (count != 0) {
[self.moc save:nil];
[self.moc reset];
}
// Drain our NSAutoreleasePool
[pool drain];
// Tell our main thread that we're done
if ([self respondsToSelector:@selector(completedCache)])
{
[self performSelectorOnMainThread:@selector(completedCache) withObject:nil waitUntilDone:NO];
}
}
答案 0 :(得分:1)
为什么不通过使用NSManagedObject
initWithEntity:insertIntoManagedObjectContext:
创建托管对象的生命周期来明确管理托管对象的生命周期,而不是处理自动发布池?您可以在修改对象的属性后安全地释放它们,因为托管对象上下文保留了新插入的对象 - 直到将其保存到持久性存储中。
另外,我应该提一下我在代码中看到的一些问题:
如上所述,您没有记录save:
操作中的错误。你真的应该 - 这可能会突出一些(可能是无关的)问题。
如果保存:成功,您实际上不需要致电reset
。请参阅核心数据指南中的this section。