每次我都会通过调用以下方法上传一条关于2Mb的数据。
在调用了大约30次之后,应用程序将收到内存警告,然后大约20次后,应用程序将崩溃而没有任何信息。我的代码中有什么问题吗?我的代码中没有发现任何内存泄漏。
//connect to uploading server, upload one slice of data, and get the next slice uploading point.
-(void)uploadSlice
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSURL *baseUrl = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@/gupload/upload_slice",_uploadServerIP]];
NSData *sliceData = nil;
NSFileHandle *file = [NSFileHandle fileHandleForReadingAtPath:item.filePath];
if (file == nil)
NSLog(@"Failed to open file");
[file seekToFileOffset:_offset];
sliceData = [file readDataOfLength:_length];
[file closeFile];
NSMutableData *data = [NSMutableData dataWithData:sliceData];
NSDictionary *dic = [[NSDictionary alloc]initWithObjectsAndKeys:
_uploadToken, @"upload_token",
[NSString stringWithFormat:@"%d",_sliceTaskId],@"slice_task_id",
[NSString stringWithFormat:@"%lld",_offset], @"offset",
[NSString stringWithFormat:@"%d",_length], @"length",
nil];
NSURL *finalUrl = [self generateURL:[baseUrl absoluteString] params:dic];
NSLog(@"upload slice url = %@",finalUrl);
ASIFormDataRequest *aRequest = [ASIFormDataRequest requestWithURL:finalUrl];
[aRequest setPostBody:data];
aRequest.requestMethod = @"POST";
[self setPostUserInfo:aRequest withRequestType:kYoukuUploadSlice];
[_networkQueue addOperation:aRequest];
[dic release];
[pool drain];
}
答案 0 :(得分:2)
您一次排队的请求太多 - ASIHTTPRequest会将您的数据保存在内存中,直到它被发送到服务器,因此内存不足也就不足为奇了。
尝试确保队列中没有超过3或4个未完成的请求 - 即。队列4开始,然后在一个完成时排队另一个,依此类推。