You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Dean Gaudet <dg...@arctic.org> on 1998/01/14 01:35:40 UTC

a slightly cooked example

The server is a single pentium-II 266, w/10ns SDRAM running linux 2.1.62.
The config file is totally cooked though... but here's some zb numbers:

---
Server:                 Apache/1.3b4-dev
Document Length:        6144
Concurency Level:       5
Time taken for tests:   64.369 seconds
Complete requests:      100000
Failed requests:        0
Keep-Alive requests:    99012
Bytes transfered:       642555545
HTML transfered:        614400000
Requests per seconds:   1553.54
Transfer rate:          9982.38 kb/s

Connnection Times (ms)
           min   avg   max
Connect:     0     0     3
Total:       0     2   172
---

1550 req/s across loopback, eh?  wheee!

Here's the cooked config file:

ServerName localhost
Port 8080
ServerRoot /tmp/apache
DocumentRoot /tmp/apache
MaxClients 5
StartServers 5
MinSpareServers 1
MaxSpareServers 5
MaxRequestsPerChild 100000
ResourceConfig /dev/null
AccessConfig /dev/null

<Directory />
AllowOverride none
Options FollowSymLinks
</Directory>

The code is from HEAD last night, and doesn't include too many special
tunings.  Just -DDYNAMIC_MODULE_LIMIT=0 and Rule STATUS=no.

So they're not realistic, but I'm just having fun.

Dean