Home  >  Article  >  php教程  >  使用fastcgi_cache加速你的Nginx网站

使用fastcgi_cache加速你的Nginx网站

WBOY
WBOYOriginal
2016-06-21 08:52:541205browse

  很久以前在国外服务器上挖了个坑,说nginx的fastcgi_cache是被大家忽视的一大金矿,今天把这个坑填上,顺祝大家新年快乐。

  对于变化不太频繁的数据,大家都比较喜欢存Memcached以减少数据库的读取,但还是会有语言解析运行上的消耗(比如运行PHP,Python等),当然这个时间很短,记得OP上有个同学说P字头的语言,效率都不高,如果能省去,当然最好。(已经用上Squid等的可以忽略本文)。

  还有一个问题就是很多时候一个页面由多个数据片断组成,为了提高页面速度,要么分别缓存,要么整体缓存(所谓的Page Cache),其实都比较麻烦,增加和减少数据片断的时,大多需要调整。

  最后一个问题,所有的数据都存Memcached是否经济?服务器资源足够多的无所谓,捉襟见肘的就要考虑了,当然,生成静态页面是一种方法,需要维护,还是比较累。

  好吧,nginx的fastcgi_cache可以解决上面的那些问题,比较squid等的好处是简单,不需再要去维护另外一个系统,适合不那么大的网站。

  关于Nginx fastcgi_cache,基础的可以参看Nginx官方文档http://wiki.nginx.org/HttpFcgiModule,下面是一个典型的做法是:

 

fastcgi_temp_path /data/ngx_fcgi_tmp<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>
fastcgi_cache_path /data/ngx_fcgi_cache levels<span style="color: rgb(0, 0, 102); font-weight: bold; ">=</span><span style="color: rgb(102, 0, 102); ">2:2 keys_zone=ngx_fcgi_cache:512m inactive=1d max_size=40g</span><span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>
fastcgi_cache_valid 200 301 302 1d<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>
fastcgi_cache_use_stale error timeout invalid_header http_500<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>
fastcgi_cache_key $request_method://$host$request_uri<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>

 

  注意一定要加上$request_method作为cache key,否则如果HEAD类型的先请求会导致后面的GET请求返回为空,全局定义一个缓存空间,配置文件名为,fastcgi_cache.conf,然后在vhost配置里面加上:

 

fastcgi_cache ngx_fcgi_cache<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>
include fastcgi.conf<span style="color: rgb(102, 102, 102); font-style: italic; ">;</span>

 

  大概解释下各个参数的含义:

  fastcgi_temp_path:生成fastcgi_cache临时文件目录

  fastcgi_cache_path:fastcgi_cache缓存目录,可以设置目录哈希层级,比如2:2会生成256*256个字目录,keys_zone是这个缓存空间的名字,cache是用多少内存(这样热门的内容nginx直接放内存,提高访问速度),inactive表示默认失效时间,max_size表示最多用多少硬盘空间,需要注意的是fastcgi_cache缓存是先写在fastcgi_temp_path再移到fastcgi_cache_path,所以这两个目录最好在同一个分区,从0.8.9之后可以在不同的分区,不过还是建议放同一分区。

  fastcgi_cache_valid:定义哪些http头要缓存

  fastcgi_cache_use_stale:定义哪些情况下用过期缓存

  fastcgi_cache_key:定义fastcgi_cache的key,示例中就以请求的URI作为缓存的key,Nginx会取这个key的md5作为缓存文件,如果设置了缓存哈希目录,Nginx会从后往前取相应的位数做为目录。

  fastcgi_cache:用哪个缓存空间

  这样就可以了,基本上可以work,但还没完,如何手动清除缓存?有个Nginx的第三方扩展可帮你做到:https://github.com/FRiCKLE/ngx_cache_purge/,如果对大多数第三方扩展无爱,写个清除的脚本也非常简单,以PHP为例:

 

<span style="color: rgb(0, 0, 0); font-weight: bold; "><?php</span>
<span style="color: rgb(0, 0, 0); font-weight: bold; ">function</span> purgeCache<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 153, 0); ">)</span>
<span style="color: rgb(0, 153, 0); ">{</span>
    <span style="color: rgb(0, 0, 136); ">$url</span>
		<span style="color: rgb(51, 153, 51); ">=</span>
		<span style="color: rgb(0, 0, 136); ">$this</span><span style="color: rgb(51, 153, 51); ">-></span><span style="color: rgb(0, 64, 0); ">post</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">&#39;url&#39;</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
 
    <span style="color: rgb(177, 177, 0); ">if</span>
		<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(153, 0, 0); ">empty</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$url</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(51, 153, 51); "></span>
		<span style="color: rgb(51, 153, 51); ">!</span>Cola_Com_Validate<span style="color: rgb(51, 153, 51); ">::</span><span style="color: rgb(0, 64, 0); ">url</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$url</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(0, 153, 0); ">{</span>
        <span style="color: rgb(153, 0, 0); ">exit</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">&#39;请输入正确的URL。&#39;</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
    <span style="color: rgb(0, 153, 0); ">}</span>
 
    <span style="color: rgb(0, 0, 136); ">$md5</span>
		<span style="color: rgb(51, 153, 51); ">=</span>
		<span style="color: rgb(153, 0, 0); ">md5</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$url</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
    <span style="color: rgb(0, 0, 136); ">$cacheFile</span>
		<span style="color: rgb(51, 153, 51); ">=</span>
		<span style="color: rgb(0, 0, 136); ">$this</span><span style="color: rgb(51, 153, 51); ">-></span>_cacheRoot <span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(0, 0, 255); ">&#39;/&#39;</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(153, 0, 0); ">substr</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$md5</span><span style="color: rgb(51, 153, 51); ">,</span>
		<span style="color: rgb(51, 153, 51); ">-</span><span style="color: rgb(204, 102, 204); ">2</span><span style="color: rgb(51, 153, 51); ">,</span>
		<span style="color: rgb(204, 102, 204); ">2</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(0, 0, 255); ">&#39;/&#39;</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(153, 0, 0); ">substr</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$md5</span><span style="color: rgb(51, 153, 51); ">,</span>
		<span style="color: rgb(51, 153, 51); ">-</span><span style="color: rgb(204, 102, 204); ">4</span><span style="color: rgb(51, 153, 51); ">,</span>
		<span style="color: rgb(204, 102, 204); ">2</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(0, 0, 255); ">&#39;/&#39;</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(0, 0, 136); ">$md5</span><span style="color: rgb(51, 153, 51); ">;</span>
 
    <span style="color: rgb(177, 177, 0); ">if</span>
		<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(51, 153, 51); ">!</span><span style="color: rgb(153, 0, 0); ">file_exists</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$cacheFile</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(0, 153, 0); ">{</span>
        <span style="color: rgb(153, 0, 0); ">exit</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">&#39;缓存不存在。&#39;</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
    <span style="color: rgb(0, 153, 0); ">}</span>
 
    <span style="color: rgb(177, 177, 0); ">if</span>
		<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(51, 153, 51); ">@</span><span style="color: rgb(153, 0, 0); ">unlink</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 136); ">$cacheFile</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(0, 153, 0); ">{</span>
        <span style="color: rgb(177, 177, 0); ">echo</span>
		<span style="color: rgb(0, 0, 255); ">&#39;清除缓存成功。&#39;</span><span style="color: rgb(51, 153, 51); ">;</span>
    <span style="color: rgb(0, 153, 0); ">}</span>
		<span style="color: rgb(177, 177, 0); ">else</span>
		<span style="color: rgb(0, 153, 0); ">{</span>
        <span style="color: rgb(177, 177, 0); ">echo</span>
		<span style="color: rgb(0, 0, 255); ">&#39;清除缓存失败。&#39;</span><span style="color: rgb(51, 153, 51); ">;</span>
    <span style="color: rgb(0, 153, 0); ">}</span>
<span style="color: rgb(0, 153, 0); ">}</span>

 

  核心是第11行,直接找到缓存文件,然后删掉就可以,这个脚本有个副作用,手动清除之后,缓存失效,但Nginx后面还会自己清除一遍,然后报个unlink失败的日志,不过无关紧要了。

  淡定,文章还没完,要不就成标题党了,Nginx fastcgi_cache缓存很不错,但我只想在某些页面用fastcgi_cache,很简单,有两种方法,一是在location中定义fastcgi_cache,这样只有满足一定规则的url才会用上cache,其他的就不会了;另外一种方法是在你不需要缓存的页面上,输出禁止缓存的头信息,用ColaPHP的话,直接$this->response->disableBrowserCache(); 具体代码:

 

<span style="color: rgb(153, 0, 0); ">header</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"Expires: Mon, 26 Jul 1997 05:00:00 GMT"</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
<span style="color: rgb(153, 0, 0); ">header</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"Last-Modified: "</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(153, 0, 0); ">gmdate</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"D, d M Y H:i:s"</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(51, 153, 51); ">.</span>
		<span style="color: rgb(0, 0, 255); ">" GMT"</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
<span style="color: rgb(153, 0, 0); ">header</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"Cache-Control: no-store, no-cache, must-revalidate"</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
<span style="color: rgb(153, 0, 0); ">header</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"Cache-Control: post-check=0, pre-check=0"</span><span style="color: rgb(51, 153, 51); ">,</span>
		<span style="color: rgb(0, 153, 0); font-weight: bold; ">false</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
<span style="color: rgb(153, 0, 0); ">header</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 0, 255); ">"Pragma: no-cache"</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>

 

  这样就告诉Nginx,这个页面不需要缓存。

  好吧,要淡定不要D疼,还有最后一个问题,如果页面中只有一小部分内容不可以缓存,可以用Nginx fastcgi_cache吗?比如某个内容页,大部分内容可以缓存,但希望把用户的登录信息更新上去。答案是肯定的,可以直接输出用户未登录的页面样式,等页面加载完毕之后,通过ajax异步更新用户信息:

 

$<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 153, 0); ">)</span>.<span style="color: rgb(102, 0, 102); ">ready</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 51, 102); font-weight: bold; ">function</span><span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 153, 0); ">)</span>
		<span style="color: rgb(0, 153, 0); ">{</span>
    initUser<span style="color: rgb(0, 153, 0); ">(</span><span style="color: rgb(0, 153, 0); ">)</span><span style="color: rgb(51, 153, 51); ">;</span>
<span style="color: rgb(0, 153, 0); ">}</span><span style="color: rgb(0, 153, 0); ">)</span>



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Zend Signal in PHP 5.4Next article:20个PHP常用类库