• php curl 中的gzip压缩性能测试


    前因:

      

    请求接口次数很多,每日两亿多次,主要是有些接口返回数据量很大高达110KB(为了减少请求次数,将多个接口合并成一个导致的)。
    后端接口的nginx已经开启gzip,所以做个测试,看看是否在请求时使用压缩解压

      

    php CURL 的扩展安装这里就不说了

    用到的curl的两个参数

    //在http 请求头加入 gzip压缩
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept-Encoding:gzip'));
    //curl返回的结果,采用gzip解压
    curl_setopt($ch, CURLOPT_ENCODING, "gzip");
    

     

    1、不使用压缩解压

    $s1 = microtime(true);
    $ch = curl_init();
    for($i=0; $i<100;$i++){
    	$url="http://192.168.0.11:8080/xxxxx/xxxxx?";
    	curl_setopt($ch, CURLOPT_URL, $url);
    	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    	curl_setopt($ch, CURLOPT_TIMEOUT, 3);
    	$data = curl_exec($ch);
    }
    curl_close($ch);
    echo  microtime(true)-$s1;
    echo "
    ";
    

      测试结果    请求100次平均耗时 2.1s   0.021s/次

       

    2、使用压缩解压

    $s1 = microtime(true);
    $ch = curl_init();
    for($i=0; $i<100;$i++){
    	$url="http://192.168.0.1:8080/xxxxx/xxxxx?";
    	curl_setopt($ch, CURLOPT_URL, $url);
    	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    	curl_setopt($ch, CURLOPT_TIMEOUT, 3);
    	curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept-Encoding:gzip'));
    	curl_setopt($ch, CURLOPT_ENCODING, "gzip");
    	$data = curl_exec($ch);
    }
    curl_close($ch);
    echo  microtime(true)-$s1;
    echo "
    ";
    

      测试结果    请求100次平均耗时 2.6s   0.026/次

    结果

    1、不使用压缩比使用压缩 请求一次快 5ms
    2、千兆网,在局域网内传输这些数据大概是 0.7ms
    

    结论

    暂时不使用 curl 的压缩和解压

  • 相关阅读:
    go学习笔记day08
    go学习笔记day07
    go学习笔记day13
    Linux下php连接sql server 2008
    Linux下解决php扩展模块mcrypt的问题
    php实现无限级树型菜单(函数递归算法)
    Apache配置文件中的deny和allow的使用
    apache动态库加载出错:cannot restore segment prot after reloc: Permission denied
    Apache编译参数注解
    ibmcrypt was not found解决方案
  • 原文地址:https://www.cnblogs.com/fengwei/p/3549124.html
Copyright © 2020-2023  润新知