【英文】Apache测试并发

Preface

Testing concurrency with Apache’s ab tool

Test

-n 20000: Specify the total number of requests to be sent
-c 50: Specify the concurrency level
http://localhost: Specify the access path

1
ab -n 20000 -c 50 http://localhost

Done