将密钥计数包括为API请求? (分析)

时间:2015-06-25 16:41:42

标签: ios cocoa-touch parse-platform

我有一个final解析查询,其中包含两个子查询和一个include:键,用于获取PFUser的数据。在storyboard类中,@"createdBy"是指向PFUser的指针,而不是实际对象本身。所有这些都导致一个API请求,对吗?

PFQuery *images = [PFQuery queryWithClassName:@"Storyboard"];
[images whereKeyExists:@"Image"];
[images whereKey:@"isPrivate" equalTo:[NSNumber numberWithBool:false]];

PFQuery *dataQuery = [PFQuery queryWithClassName:@"Storyboard"];
[dataQuery whereKeyDoesNotExist:@"Image"];
[dataQuery whereKey:@"friendCollege" notEqualTo:@"College"];

PFQuery *final = [PFQuery orQueryWithSubqueries:@[images, dataQuery]];
[final includeKey:@"createdBy"];
[final orderByDescending:@"createdAt"];
[final setLimit:30];
[final findObjectsInBackgroundWithBlock:^(NSArray *array, NSError *error){

1 个答案:

答案 0 :(得分:3)

Here是Hector的回答,解释了API请求是什么。基本上每次调用Parse服务器时,都会将其视为API请求。

回到你的问题:我会说它只是一个API请求,因为你有效地进行了一个复杂的查询。