用户第一次打开我的应用程序时,我需要下载大量数据。我以 JSON 格式从服务器获取所有这些数据。根据用户的不同,这些 JSON 文件的大小可以从 10kb 到 30mb 不等,其中有 10 多个。
当 JSON 的记录不超过 500 条左右时,我这样做没有问题,但就像我说的那样,有些记录有 10,000 多条,并且大小可达 30mb。
下载较大的 JSON 时,我的应用程序分配了大量内存,直到我最终收到内存警告并且应用程序崩溃。
看来 CFData 必须是我在 didReceiveData 中构建的 NSMutableData。当我下载单个 JSON 时,CFData(存储)会上升——当我开始解析时,它会停止上升。
在继续下载和解析下一个 JSON 之前,如何清除这些数据?
如下所示,内存中有 200mb 的 CFData(存储):
--
深入研究 CFData 并没有对我有太大帮助:
这是我创建操作以获取这些各种 JSON 的代码——
- (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 是我在内存中的 JSON 响应吗?我试图清除我的 NSURLCache 没有运气 -
我还对 JSON 流进行了一些研究。这会帮助我减少内存中的对象数量吗?
除此之外,我能想到的唯一其他选择是实现某种分页..但我需要我的用户拥有所有数据
非常感谢任何帮助/建议!谢谢!
--
编辑
好的,我决定使用剥离 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];
}