最近有很多文章,比如this one,讚美Django靜態生成器與輕量級前端Web服務器結合使用的優點。這對我來說很有意義。爲什麼不是Django靜態生成器和Nginx給我老闆的速度?
但是,我沒有得到其他人報告的結果 - 每秒數千次請求 - 我不知道這是爲什麼。
我準備對我的報紙網站進行重新設計。我現在在測試服務器上使用了Static Generator。當我一個特定的靜態網頁上運行的Apache臺,我變得非常悲慘的結果:
ab -c 10 -n 1000 http://journal.streamlister.com/news/
Concurrency Level: 10
Time taken for tests: 53.011 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 21281212 bytes
HTML transferred: 21067360 bytes
Requests per second: 18.86 [#/sec] (mean)
Time per request: 530.107 [ms] (mean)
Time per request: 53.011 [ms] (mean, across all concurrent requests)
Transfer rate: 392.04 [Kbytes/sec] received
我在服務器上觀看top
而攻城上,我可以看到它根本沒有擊中Apache或數據庫服務器。因此,它實際上是爲緩存頁面提供服務。 Nginx正在運行,但它永遠不會超過2%的內存使用量。 CPU保持閒置約95%。
我在做什麼錯?我可以以某種方式錯誤配置nginx嗎?我的主配置文件粘貼在下面;特定於本網站的內容幾乎是Static Generator home page上示例配置的副本。我在Slicehost 256k slice上運行Ubuntu 9.10。
user not_my_real_username;
worker_processes 4;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 8192;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
sendfile on;
#tcp_nopush on;
keepalive_timeout 0;
#keepalive_timeout 65;
tcp_nodelay on;
gzip on;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}