我之前好像有寫過相關的文章,不過不重要,先筆記找到的東西再說囉。
zlib.output_compression
zlib.output_handler
output_handler
以上三項在 php.ini
裡的壓縮設定,會對 Xajax 產生無回應的影響,若有使用 Xajax 的話請勿開啟。至於是不是對所有的 HttpXmlRequest 有影響則不知,目前我只有使用 Xajax 而已,如果再使用其他的 HttpXmlRequest 有影響的話,建議先檢查上述三個項目是否有被設定。
另外,Apache 裡的 gzip(1.3x)
與 deflate(2.x)
則不會產生影響。
有關於 memcached 的文章:
在 FreeBSD 6 底下安裝 php-memcached
如下:
cd /usr/ports/database/memcached
make install clean
至於我為什麼不使用 memcached 的原因,就是因為公司的那台電腦並不是 Server,他只是一般的 PC 拿來充當 Server 用而已,記憶體定址還沒辦法定到 4GB,再加上我實在不太信任 non-ECC 的記憶體,所以不太敢用這個東西,萬一出了問題可就麻煩了。
開啟 gzlib
與 deflate
來壓縮 Apache 的輸出。關於 deflate
的一些設定,參考如下:
# Insert filter
SetOutputFilter DEFLATE
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don't compress images/video
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|mpe?g|avi|mov|rmvb|ram|mp3|mp4)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
<IfModule mod_deflate.c>
DeflateCompressionLevel 6
AddOutputFilterByType DEFLATE text/css text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE html htm xml php css js
</IfModule>
使用 limitipconn
來限制連線數。因為我是安裝 Apache2 所以就安裝 mod_limitipconn2
這個模組。
cd /usr/ports/www/mod_limitipconn2
make install clean
在 httpd.conf 設定如下:
<IfModule mod_limitipconn.c>
<Location />
MaxConnPerIP 15
NoIPLimit images/* text/css application/x-javascript
</Location>
</IfModule>
測試網站壓縮輸出的工具:
HTTP Analysis Tools for Testing Your Site
& Port80 Software Products