Jak przyspieszyć cURL w php?

Próbuję uzyskać tweeta z Twittera. Więc używam cURL, aby odzyskać jsona. Napisałem mały test, ale test trwa około 5 sekund, a także gdy uruchamiam lokalnie. Więc nie jestem pewien, co tu źle robię.

public function get_tweet_embed($tw_id) {

    $json_url = "https://api.twitter.com/1/statuses/oembed.json?id={$tw_id}&align=left&omit_script=true&hide_media=false";

    $ch = curl_init( $json_url );
    $start_time = microtime(TRUE);
    $JSON = curl_exec($ch);
    $end_time = microtime(TRUE);
    echo $end_time - $start_time; //5.7961111068726

    return $this->get_html($JSON);
}

private function get_html($embed_json) {
    $JSON_Data = json_decode($embed_json,true);
    $tw_embed_code = $JSON_Data["html"];
    return $tw_embed_code;
}

Kiedy wklejam link i testuję go z przeglądarki, jest to naprawdę szybkie.

questionAnswers(6)

yourAnswerToTheQuestion