Varnish 安装步骤(六)

五、管理varnish缓存内容
 Varnish的一个显著优点是可以灵活的管理缓存内容,而管理缓存主要的工作是如何迅速有效的控制和清除指定的缓存内容,varnish清除缓存相对比较复杂,不过幸运的是,可以通过varnish的管理端口发送PURGE指令来清除不需要的缓存。
下面列出了清除缓存内容的命令格式:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500 purge.url  <regexp>
下面的命令可以列出最近清除的详细URL列表:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500  purge.list 
举例如下:
(1)如果要清除http://www.example.com/a/2010.html的URL地址,可以执行如下命令:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500  purge.url /a/2010.html
(2)批量清除类似http://www.example.com/a/b/s*.html的URL地址,可执行如下命令:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500  purge.url ^/a/b/s.*$
(3)批量清除类似http://www.example.com/a/b/*.html的URL地址,可执行如下命令:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500  purge.url  ^/a/b.*$
(4)如果要清除所有缓存,可执行如下命令:
/usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500 purge.url  ^.*$
(5)查看最近清除的详细URL列表
[root@varnish-server ~]# /usr/local/varnish/bin/varnishadm -T 192.168.12.246:3500 purge.list
0x2dc310c0 1278674980.497631     0      req.url ~ /zm/a/web/2010/0423/64.html
0x2dc31100 1278674964.851327     1      req.url ~ ^/zm/a/d.*$
除了通过linux命令行方式清理varnish缓存外,还可以通过telnet到管理端口的方式来清理缓存页面,例如:

  
  
  
  
  1. [root@varnish-server ~]#telnet 192.168.12.246 3500                 
  2. Trying 192.168.12.246...  
  3. Connected to localhost.localdomain (192.168.12.246).  
  4. Escape character is '^]'.  
  5. 200 154       
  6. -----------------------------  
  7. Varnish HTTP accelerator CLI.  
  8. -----------------------------  
  9. Type 'help' for command list.  
  10. Type 'quit' to close CLI session.  
  11.  
  12. purge.url  /a/mz/2010/0421/11.html  #这里是清除这个页面缓存  
  13. 200 0         
  14.  
  15. purge.url  ^/zm/a/d.*$   #这里是清除/zm/a/d/目录下所有以字母d开头的缓存页面  
  16. 200 0  
  17.  

对于系统管理人员或者运维人员来说,时刻了解varnish命中率是至关重要的,虽然varnish给出了很详细的统计数据,但是统计的数据不是很直观,并且必须登录到varnish服务器才能查看,下面给出一个php程序,可以随时随地,并且非常清晰的了解varnish系统的命中率相关情况,程序如下:

  
  
  
  
  1. <?php 
  2.  
  3. // This is just a code snippet written by Jason "Foxdie" Gaunt, its not meant to be executed, it may work as-is, it may not.  
  4. // I freely acknowledge this code is unoptimised but it has worked in practice for 6 months :)  
  5.  
  6. // Lets define our connection details  
  7. $adminHost = "127.0.0.1"; // varnish服务器的IP地址  
  8. $adminPort = "3500"; // varnish服务器管理端口  
  9.  
  10. // pollServer(str) - this function connects to the management port, sends the command and returns the results, or an error on failure  
  11. function pollServer($command) {  
  12.  global $adminHost, $adminPort;  
  13.    
  14.  $socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname("tcp"));  
  15.  if ((!socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, Array("sec" => "5", "usec" => "0"))) OR (!socket_set_option($socket, SOL_SOCKET, SO_SNDTIMEO, Array("sec" => "5", "usec" => "0"))))  {  
  16.   die("Unable to set socket timeout");  
  17.  }  
  18.    
  19.  if (@socket_connect($socket, $adminHost, $adminPort)) {  
  20.   $data = "";  
  21.       
  22.   if (!$socket) {  
  23.    die("Unable to open socket to " . $server . ":" . $port . "\n");  
  24.   }  
  25.     
  26.   socket_write($socket, $command . "\n");  
  27.   socket_recv($socket, $buffer, 65536, 0);  
  28.   $data .= $buffer;    
  29.     
  30.   socket_close($socket);  
  31.     
  32.   return $data;  
  33.  }  
  34.  else {  
  35.   return "Unable to connect: " . socket_strerror(socket_last_error()) . "\n";  
  36.  }  
  37. }  
  38.  
  39. // byteReduce(str) - this function converts a numeric value of bytes to a human readable format and returns the result  
  40. function byteReduce($bytes) {  
  41.  // Terabytes  
  42.  if ($bytes > 1099511627776) {  
  43.   return round($bytes / 1099511627776) . "TB";  
  44.  }  
  45.  else if ($bytes > 1073741824) {  
  46.   return round($bytes / 1073741824) . "GB";  
  47.  }  
  48.  else if ($bytes > 1048576) {  
  49.   return round($bytes / 1048576) . "MB";  
  50.  }  
  51.  else if ($bytes > 1024) {  
  52.   return round($bytes / 1024) . "KB";  
  53.  }  
  54.  else {  
  55.   return $bytes . "B";  
  56.  }  
  57. }  
  58.  
  59. // This is where our main code starts  
  60. echo "<div class=\"inner\"><br />Statistics since last reset:<ul>";  
  61. $stats = pollServer("stats");  
  62. if (substr($stats, 0, 3) == "200") { // If request was legitimate  
  63.  // Clear all excessive white space and split by lines  
  64.  $stats = preg_replace("/ {2,}/", "|", $stats);   
  65.  $stats = preg_replace("/\n\|/", "\n", $stats);  
  66.  $statsArray = explode("\n", $stats);  
  67.    
  68.  // Removes the first call return value and splits by pipe  
  69.  array_shift($statsArray);  
  70.  $statistics = array();  
  71.  foreach ($statsArray as $stat) {  
  72.   @$statVal = explode("|", $stat);  
  73.   @$statistics[$statVal[1]] = $statVal[0];  
  74.  }  
  75.  unset($stats, $statsArray, $stat, $statVal);  
  76.    
  77.  // Start outputting statistics  
  78.  echo "<li>" . $statistics["Client connections accepted"] . " clients served over " . $statistics["Client requests received"] . " requests";  
  79.  echo "<li>" . round(($statistics["Cache hits"] / $statistics["Client requests received"]) * 100) . "% of requests served from cache";  
  80.  echo "<li>" . byteReduce($statistics["Total header bytes"] + $statistics["Total body bytes"]) . " served (" . byteReduce($statistics["Total header bytes"]) . " headers, " . byteReduce($statistics["Total body bytes"]) . " content)";  
  81.    
  82.  // The following line is commented out because it only works when using file storage, I switched to malloc and this broke  
  83.  // echo "<li>" . byteReduce($statistics["bytes allocated"]) . " out of " . byteReduce($statistics["bytes allocated"] + $statistics["bytes free"]) . " used (" . round(($statistics["bytes allocated"] / ($statistics["bytes allocated"] + $statistics["bytes free"])) * 100) . "% usage)";  
  84. }  
  85. else {  
  86.  echo "Unable to get stats, error was: \"" . $stats;  
  87. }  
  88.  
  89. echo "</ul></div>";  
  90.  
  91. ?> 
  92.  

将此php程序放到varnish服务器上,即可统计处当前varnish的命中率以及缓存状态,统计结果类似于下面的一个输出:

  
  
  
  
  1. Statistics since last reset:  
  2.  63543 clients served over 584435 requests  
  3.  98% of requests served from cache  
  4.  4GB served (246MB headers, 4GB content)  

在这个输出中,清晰的列出了浏览器请求总数、缓存命中率、缓存区中所有缓存内容的HTTP头信息长度和缓存内容的正文长度。根据这个结果判断,varnish的缓存效果还是很不错的,命中率很高。

本文出自 “dsafsa_技术博客” 博客,转载请与作者联系!

你可能感兴趣的:(varnish,安装配置,varnish安装)