While I'm using the Graph API to simple action, like this for example:
require 'src/facebook.php';
# facebook class
$facebook = new Facebook(array(
'appId' => 'XXX',
'secret' => 'XXX',
));
for ($i = 0; $i < 9; $i++)
{
$url = $facebook->api('/Intel');
echo $url['name'] . '<br />';
}
(just a quick example, I want to return 9 different pages but it doesn't matter now)
Well, this action took 9 - 10 SECONDS! too much.. and this is the only acion on the page (you can try run it and see).
What can I do? (if I'm using FQL via api [as method fql.query] it doesn't improve the running time, I checked it) I have to using graph api.
By the way, I'm using PHP SDK 3.0.1 (newest version.. maybe this is the problem?)