提高網站速度體驗除了本身網站程式最佳化外,對於LinuxSA來說還有大量的工作要做,最佳化系統核心、調整Web伺服器的參數、最佳化資料庫、增加網站架構快取等等一系列的工作。
對於網站緩衝,目前主流的HTTP加速器主要有Varnish、Nginx_proxy、Squid等,隨著Nginx Web 高速反向 Proxy被各大中型網站使用,其整合緩衝的功能(Nginx_proxy)也日益強大,目前企業中也在大量使用。今天我們來研究一下 Nginx_Proxy緩衝如何有效來清理。如下使用Shell指令碼來自動化清理,直接上指令碼如下:
#! /bin/sh
#Auto Clean Nginx Cache Shell Scripts
#2013-06-12 wugk
#Define Path
CACHE_DIR=/data/www/proxy_cache_dir/
FILE="$*"
#To determine whether the input script,If not, then exit 判斷指令碼是否有輸入,沒有輸入然後退出
if
[ "$#" -eq "0" ];then
echo "Please Insertclean Nginx cache File, Example: $0 index.html index.js"
sleep 2 && exit
fi
echo "The file : $FILEto be clean nginx Cache ,please waiting ....."
#Wrap processing for the input file, for grep lookup,對輸入的檔案進行換行處理,利於grep尋找匹配相關內容
for i in `echo $FILE |sed 's//n/g'`
do
grep -ra $i ${CACHE_DIR}| awk -F':' '{print $1}' > /tmp/cache_list.txt
for j in `cat/tmp/cache_list.txt` do
rm -rf $j
echo "$i $j is DeletedSuccess !"
done
done
#The Scripts exec success and exit 0
如下為執行清除指令碼後的截圖: