I am allowing the user to search their facebook friends with an ajax request with the keyup javascript function.
The ajax request calls a php action that uses the fql to search through a users friends and output 10 of the friends. This ajax request takes on average 5 seconds so is not quick enough for someone typing, is there any way to make my code quicker or make it more efficient?
$params = array("method"=> "fql.query", "query"=> "SELECT uid, name, pic FROM user WHERE strpos(lower(first_name), '$data') >= 0 AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ORDER BY first_name LIMIT 10 ", "callback"=> "");
$friends = $facebook->api($params);
$this->view->friends = $friends;
where $data holds the name to search for. I then output this in my view in html format. Any ideas?