上次寫了一篇nginx看了一下,功能蠻強大的,所以就記錄下來·基本沒什麼變化,在原有的例子上稍加了下修改,加了乙個限速功能。在 0.8.x 版本上編譯出出錯,他官方也有寫:
fornginxversions other than 0.7.44-51
nginx $> tar zxvf nginx-0.7.67.tar.gz2.建立配置檔案:nginx $> tar zxvf nginx_upload_module-2.0.12.tar.gz
nginx $> cd nginx-0.7.67
#關掉不需要的模組,節省資源開支俗話說越簡潔越穩定~
3.建立測試**
nginx $> cd /var/wwwnginx $> mkdir webdata
nginx $> chown www.www webdata
nginx $> vim upload.php< ?php
echo "request :";
echo "upload: " . $_request["file_name"] . "";
echo "type: " . $_request["file_content_type"] . "";
echo "path: " . $_request["file_path"] . "";
echo "md5 " . $_request["file_md5"] . "";
echo "size: " . ($_request["file_size"] / 1024) . "";
echo "_post:";
echo "name : " . $_post["file_name"] . "";
echo "type : " . $_post["file_content_type"] . "";
echo "path : " . $_post["file_path"] . "";
echo "md5 : " . $_post["file_md5"] . "";
echo "size : " . ($_post["file_size"] / 1024) . "kb";
?>
nginx $> vim upload.html4.測試: from:
Nginx PHP FPM配置及優化指南(上)
本文介紹在centos5.8 6.2 redhat rhel 5.8 6.2下lemp lnmp環境下的nginx php fpm的web伺服器配置及優化指南。截至目前,各軟體版本為 如果您還沒有搭建lemp環境,可以參照我之前寫過一篇文章 lemp 或lnmp 高效能的web伺服器在centos6...
一次優化經歷
問題 excel資料匯入,儲存到資料庫中,為了優化查詢效率和其他一些業務需求,需要將資料的一列屬性切分後儲存到redis中,插入資料庫前要保證其中乙個屬性不重複,另外乙個屬性已經在資料庫中。為了將問題描述簡單些,我們假設excel中有兩列資料a和b,其中資料a要保證資料庫中不重複,資料b保證資料庫中...
一次優化記錄
備註 由於隱私 部分使用了偽 偽sql 直接查十點查全部 select from 使用者優惠券表 where 優惠券id in select id from 優惠券表 where 限制 新使用者 and 90天內 總時間40 秒 這裡用exlpain分析 優惠券id是有索引的,但是實際上沒有走索引。...