How to speed up cURL in php?

后端 未结 7 1124
粉色の甜心
粉色の甜心 2020-12-31 07:38

I\'m trying to get embed tweet from Twitter. So, I\'m using cURL to get the json back. I wrote a little test but the test takes around 5 seconds as well as when I run locall

7条回答
  •  孤城傲影
    2020-12-31 08:15

    Try

    CURLOPT_TCP_FASTOPEN => 1
    

    ... to activate TCP-Fast-Open.

    It was added to cURL 7.49.0, added to PHP 7.0.7.

提交回复
热议问题