开始测试 使用ab工具,并行500个客户端, 发送50000次请求 $ ab -c 500 -t 30 -r "http://127.0.0.1:8000/" 分别使用四种方式启动使用服务, 并开启4个worker $ gunicorn -w 4 app:app --error-logfile - --worker-class sync $ gunicorn -w 4 app:app --error-logfile - --worker-class gevent $...