用户打开我的应用我第一次需要下载大量数据。 我得到的所有数据从JSON形式的服务器。 根据不同的用户,这些JSON文件可以从10KB在任何地方 - 各30MB,并有他们的10+。
我没有问题,这样当JSONs不超过500条左右的记录,但就像我说的一些有10000条记录,并可以高达30MB大小。
当下载较大JSONs,我的应用程序allocs一吨的记忆,直到我最终得到内存警告和应用程序炸毁。
看来CFData必须是我建设didReceiveData的NSMutableData。 当我下载一个JSON的CFData(商店)rises--,当我开始分析它停止上升。
如何清除出那动人的下载和解析下一个JSON数据之前?
正如你可以看到下面,有CFData(店)的200MB内存围坐:
-
深入挖掘CFData没有透露太多帮助我:
这里是我创建的操作来获得这些不同的代码JSONs--
- (void)checkForUpdates
{
if(!_globals)
_globals = [MySingleton sharedInstance];
MyAFHTTPClient* client = [MyAFHTTPClient sharedClient];
NSString* path = [NSString stringWithFormat:@"cache?deviceUID=%@&token=%@",[_globals getMacAddress], [_globals getToken]];
NSURLRequest* request = [client requestWithMethod:@"GET" path:path parameters:nil];
_currentEnvironment = [_globals getActiveEnvironment];
if(!_currentEnvironment.didDownloadDataValue)
[self setupAndShowHUDinView:self.view withText:@"Checking for updates..."];
AFJSONRequestOperation* operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
for(NSString *str in [JSON valueForKey:@"Views"])
{
//for each table i need to update, create a request to
NSString* path = [NSString stringWithFormat:@"cache/%@/?deviceUID=%@&token=%@", str, @"00000-00000-0000-00001", [_globals getToken]];
NSURLRequest* request = [client requestWithMethod:@"GET" path:path parameters:nil];
AFJSONRequestOperation* operation2 = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON)
{
// even if this is comment this out and I do nothing but download, app crashes
//[self updateTable:str withJSON:JSON];
} failure:nil];
[operation2 setSuccessCallbackQueue:backgroundQueue];
[client.operationQueue addOperation:operation2];
numRequests++;
}
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
}];
[operation start];
}
那是我的CFData反应JSONs是在内存中? 我试图清除我的NSURLCache没有luck--
我也看了一点成JSON流..会,帮助我的人,以减少内存中的对象的数量?
除此之外,我能想到的唯一的选择是实现某种paging..but我需要我的用户拥有所有数据
任何帮助/建议,非常感谢! 谢谢!
-
编辑
好吧,我决定用带出AFNetworking,并尝试使用本机的功能。 在这一过程中我仍然得到的CFData的相同版本。 我使用的NSOperation的这个子类和我创建/加入我的操作和现在一样如下:
NSOperationQueue *operationQueue;
operationQueue = [[NSOperationQueue alloc]init];
[operationQueue setMaxConcurrentOperationCount:1];
for(NSString *str in [views valueForKey:@"Views"])
{
NSString* path = [NSString stringWithFormat:@"%@cache/%@/?deviceUID=%@&token=%@", _globals.baseURL, str, @"00000-00000-0000-00001", [_globals getToken]];
LibSyncOperation *libSyncOperation = [[LibSyncOperation alloc] initWithURL:path];
[operationQueue addOperation:libSyncOperation];
}