ab失败的请求

我已经构build了一个简单的apache + django + mod_wsgi webapp,我正在testing我的本地机器。

我已经开始使用ab进行负载testing了 – 而且我看到一些失败的请求。

ab -n 500 -c 100 "http://localhost/" output: .... Complete requests: 500 Failed requests: 27 

在我的apacheconfiguration中,我closures了Keepalive,MaxClients&MaxKeepAliveRequests的所有configuration都设置为150.当我启动100个连接时,我不认为我达到了这个限制。 顶部说我也没有用完内存

我怎样才能减less失败的请求数量?

还有这些失败的请求的日志/logging? – 因为在apache日志中没有任何东西。

考虑使用httperf或weighttp而不是ab。

他们都提供比ab更多的细节失败的请求。