zoukankan      html  css  js  c++  java
  • ubuntu20部署php-swoole开发环境

    第1步:安装依赖

    add-apt-repository ppa:ondrej/php
    apt install php-dev

    第2步:编译安卓swoole

    wget https://codeload.github.com/swoole/swoole-src/tar.gz/v4.5.2

    然后tar zxvf 之....

    cd swoole-src-4.5.2

    phpize
    ./configure
    make
    make install

    第3步:写入配置文件

    echo 'extension=swoole.so' > /etc/php/7.4/cli/conf.d/20-swoole.ini

    第4步:将下面内容保存成swoole.php并运行php swoole.php测试

    <?php
    //高性能HTTP服务器
    $http = new SwooleHttpServer("0.0.0.0", 9501);
    $http->on("start", function ($server) {
        echo "Swoole http server is started at http://127.0.0.1:9501
    ";
    });
    $http->on("request", function ($request, $response) {
        $response->header("Content-Type", "text/plain");
        $response->end("Hello World
    ");
    });
    $http->start();

    第5步:模拟1000个并发进行压力测试

    ab -n 100000 -c 1000 http://127.0.0.1:9501/

    结果Requests per second: 8651.06 [#/sec] (mean)

    This is ApacheBench, Version 2.3 <$Revision: 1843412 $>

    Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Licensed to The Apache Software Foundation, http://www.apache.org/

    Benchmarking 127.0.0.1 (be patient)
    Completed 10000 requests
    Completed 20000 requests
    Completed 30000 requests
    Completed 40000 requests
    Completed 50000 requests
    Completed 60000 requests
    Completed 70000 requests
    Completed 80000 requests
    Completed 90000 requests
    Completed 100000 requests
    Finished 100000 requests


    Server Software: swoole-http-server
    Server Hostname: 127.0.0.1
    Server Port: 9501

    Document Path: /
    Document Length: 12 bytes

    Concurrency Level: 1000
    Time taken for tests: 11.434 seconds
    Complete requests: 100000
    Failed requests: 0
    Total transferred: 16100000 bytes
    HTML transferred: 1200000 bytes
    Requests per second: 8746.07 [#/sec] (mean)
    Time per request: 114.337 [ms] (mean)
    Time per request: 0.114 [ms] (mean, across all concurrent requests)
    Transfer rate: 1375.11 [Kbytes/sec] received

    Connection Times (ms)
    min mean[+/-sd] median max
    Connect: 0 47 6.9 47 65
    Processing: 13 67 10.9 67 112
    Waiting: 0 50 10.7 51 98
    Total: 53 114 8.3 115 145

    Percentage of the requests served within a certain time (ms)
    50% 115
    66% 118
    75% 120
    80% 121
    90% 124
    95% 126
    98% 129
    99% 131
    100% 145 (longest request)

  • 相关阅读:
    洛谷P3233 世界树
    线性基
    CF321E Ciel and Gondolas
    洛谷P2619 Tree I
    重温一下基本数据类型以及自动提升数据类型的问题
    不可理喻的JSTL标签库
    理解RESTful架构(转)
    Node.js的优点和缺点(转载)
    自制双色球随机号码
    编程, 细心永远都不嫌多(记录java连接数据库的一个错误)
  • 原文地址:https://www.cnblogs.com/xiangxisheng/p/13301283.html
Copyright © 2011-2022 走看看