I'm writing a web app that allows users to search data from their Facebook profile as well as that of their friends (who've also authorized the app). Initially I was looping through the friends and making separate API calls to get the friend data, but that was SUPER slow. So I switched to building an array of API requests and submitting one batch request.
The batch request is supposed to be the solution to my problem, but it's STILL agonizingly slow. My page loads are around 15 seconds and I cannot figure out why. The documentation claims that each request in the batch is processed in parallel, but it sure doesn't seem that way. Is it relevant that each of my batched requests takes an unique access token? The documentation doesn't indicate that this is a problem, but the documentation doesn't say a lot of things...
Here's an example of one of my batch queries:
[
{"method":"GET",
"relative_url":"\/#####\/friends?fields=name,first_name,last_name,id,work,education&access_token=#####"},
{"method":"GET",
"relative_url":"\/#####\/friends?fields=name,first_name,last_name,id,work,education&access_token=#####"},
{"method":"GET",
"relative_url":"\/#####\/friends?fields=name,first_name,last_name,id,work,education&access_token=#####"}
]
Just to give you some context, the app makes one API request to get the user's friends. Then it loops through those results and builds a batch request for each friend (that has authorized the app) and sends a second API batch request using the PHP SDK ($json_batch is a batch request like the one shown above):
$rawdata = $facebook->api('?batch='.$json_batch, 'POST');
(exemplified above). The cumulative results are checked for matches against the user's search query and echoed back to the user. Any ideas why this should take 20 seconds to happen??
UPDATE: I added some code to track the time at various times during the execution of the script... The entire class runs in 11-13 seconds. The first FB api call (to the graph) takes 0.6 seconds. The second batch call is 10-11 seconds! But WHY?