gunicorn+django慢sql查询

django:
ab -n 1000 http://127.0.0.1:8000/test/
qps:    256.36
avg:    3.901

ab -n 1000 -c10 http://127.0.0.1:8000/test/
qps:    277.51
avg:    36.035

gunicorn:
ab -n 1000 http://127.0.0.1:8000/test/
qps:    951.69
avg:    1.051

ab -n 1000 -c10 http://127.0.0.1:8000/test/
qps:    1007.05
avg:    9.930

tomcat:
ab -n 1000  http://localhost:8080/servlets-examples/servlet/HelloWorldExample
qps:    1811.26
avg:    0.579

ab -n 1000 -c10 http://127.0.0.1:8000/test/
qps:    1608.22
avg:    6.218

 



 
gunicorn+django慢sql查询_第1张图片



gunicorn+django慢sql查询_第2张图片
 
 


 

 

你可能感兴趣的:(django)