Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the PHP SDK and it's really slow, for example to run this:

      try {
        $me = $this->facebook->api('/me');
        if ($me) {
          return true;
        }
      } catch (FacebookApiException $e) {
        return false;
      }

I bench marked it at 0.8605. This adds up to a lot, is there a better way to query this data?

share|improve this question
how much data are you requesting at a time that it "adds up"? What sorts of requests are you making? – Lix Sep 16 '11 at 23:27

1 Answer

up vote 1 down vote accepted

You can cache the response and then subscribe to real-time updates to get notified if that data ever changes. You could also load it asynchronously through javascript in the browser. I haven't seen that slow of a response time from /me though so it could be a temporary issue. Are you sure its not network response time? What country are you requesting it from?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.