1
Discuss Anything / slow server performance
« on: October 12, 2014, 02:20:50 AM »
you guys might want to get nginx / pound / stunnel (ssl/tls termination) + varnish (or squid reverse proxy) going, or straight up nginx + fpm + fpm caching going. your page renderings are crawling.
ab -n 20 -c 20 https://satanninja.com/about/the-comic
Requests per second: 8.92 [#/sec] (mean)
Transfer rate: 103.58 [Kbytes/sec] received
this is nginx + fpm with out caching involved:
ab -n 20 -c 20 http://127.0.0.1/drupal/index.php
Document Path: /drupal/index.php
Requests per second: 89.48 [#/sec] (mean)
apache dso is slow, you might want to ditch it, & become c10k compliant. this is my experimental wiki with varnish + nginx + fpm. (sorry i don't have varnish configured for drupal yet. i'm still a drupal newb, and the drupal module only supports up to 3.x, ive got 4.x going on here.) (other nginx note, it doesn't support .htaccess and drupal uses that all over the place.)
ab -n 20 -c 20 http://127.0.0.1:8080/wiki/index.php
Requests per second: 5275.65 [#/sec] (mean)
above polite test, below rude test (5000 concurrent hits at once)
ab -n 5000 -c 5000 http://127.0.0.1:8080/wiki/index.php
Requests per second: 8699.03 [#/sec] (mean)
ab -n 20 -c 20 https://satanninja.com/about/the-comic
Requests per second: 8.92 [#/sec] (mean)
Transfer rate: 103.58 [Kbytes/sec] received
this is nginx + fpm with out caching involved:
ab -n 20 -c 20 http://127.0.0.1/drupal/index.php
Document Path: /drupal/index.php
Requests per second: 89.48 [#/sec] (mean)
apache dso is slow, you might want to ditch it, & become c10k compliant. this is my experimental wiki with varnish + nginx + fpm. (sorry i don't have varnish configured for drupal yet. i'm still a drupal newb, and the drupal module only supports up to 3.x, ive got 4.x going on here.) (other nginx note, it doesn't support .htaccess and drupal uses that all over the place.)
ab -n 20 -c 20 http://127.0.0.1:8080/wiki/index.php
Requests per second: 5275.65 [#/sec] (mean)
above polite test, below rude test (5000 concurrent hits at once)
ab -n 5000 -c 5000 http://127.0.0.1:8080/wiki/index.php
Requests per second: 8699.03 [#/sec] (mean)