使用Shell指令碼批量清除Nginx緩衝

來源:互聯網
上載者:User

   提高網站速度體驗除了本身網站程式最佳化外,對於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

  如下為執行清除指令碼後的截圖:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.