Siege 网站性能压力测试工具使用入门

Siege is an open source regression test and benchmark utility. It can stress test a single URL with a user defined number of simulated users, or it can read many URLs into memory and stress them simultaneously. The program reports the total number of hits recorded, bytes transferred, response time, concurrency, and return status. Siege supports HTTP/1.0 and 1.1 protocols, the GET and POST directives, cookies, transaction logging, and basic authentication. Its features are configurable on a per user basis.

Linux 上编译安装步骤(参考):

$ cd /tmp

$ wget http://download.joedog.org/siege/siege-latest.tar.gz tar xzf siege-latest.tar.gz

$ ./configure --with-ssl=/usr/bin/openssl --prefix=/opt/app/siege

$ make

$ make install

原文地址:https://www.cnblogs.com/imzhi/p/siege-install-and-manual.html