熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

深入Nginx + PHP 緩存詳解

2022-06-13   來源: PHP編程 
以下是對Nginx中的PHP緩存進行了詳細的分析介紹需要的朋友可以參考下  

  Nginx緩存
nginx有兩種緩存機制:fastcgi_cache和proxy_cache
下面我們來說說這兩種緩存機制的區別吧
proxy_cache
作用是緩存後端服務器的內容可能是任何內容包括靜態的和動態的
fastcgi_cache作用是緩存fastcgi生成的內容很多情況是php生成的動態內容
proxy_cache緩存減少了nginx與後端通信的次數節省了傳輸時間和後端帶寬
fastcgi_cache緩存減少了nginx與php的通信次數更減輕了php和數據庫的壓力
proxy_cache緩存設置

復制代碼 代碼如下:
#注proxy_temp_path和proxy_cache_path指定的路徑必須在同一分區
proxy_temp_path /data/proxy_temp_dir;
#設置Web緩存區名稱為cache_one內存緩存空間大小為MB天沒有被訪問的內容自動清除硬盤緩存空間大小為GB
proxy_cache_path /data/proxy_cache_dir levels=: keys_zone=cache_one:m inactive=d max_size=g;
server
{
listen ;
server_name wwwyourdomaincom ;
index indexhtml indexhtm;
root /data/htdocs/www;
location /
{
#如果後端的服務器返回執行超時等錯誤自動將請求轉發到upstream負載均衡池中的另一台服務器實現故障轉移
proxy_next_upstream http_ http_ error timeout invalid_header;
proxy_cache cache_one;
#對不同的HTTP狀態碼設置不同的緩存時間
proxy_cache_valid h;
#以域名URI參數組合成Web緩存的Key值Nginx根據Key值哈希存儲緩存內容到二級緩存目錄內
proxy_cache_key $host$uri$is_args$args;
proxy_set_header Host $host;
proxy_set_header XForwardedFor $remote_addr;
proxy_pass http://backend_server;
expires d;
}
#用於清除緩存假設一個URL為通過訪問就可以清除該URL的緩存
location ~ /purge(/*)
{
#設置只允許指定的IP或IP段才可以清除URL緩存
allow ;
allow /;
deny all;
proxy_cache_purge cache_one $host$$is_args$args;
}
#擴展名以phpjspcgi結尾的動態應用程序不緩存
location ~ *(php|jsp|cgi)?$
{
proxy_set_header Host $host;
proxy_set_header XForwardedFor $remote_addr;
proxy_pass http://backend_server;
}
access_log off;
}
}

  
fastcgi_cache緩存設置

復制代碼 代碼如下:
#定義緩存存放的文件夾
fastcgi_cache_path /tt/cache levels=: keys_zone=NAME:m inactive=d max_size=G;
#定義緩存不同的url請求
fastcgi_cache_key "$scheme$request_method$host$uri$arg_filename$arg_x$arg_y";
server {
listen ;
server_name wwwexample com;
location / {
root /www;
index indexhtml indexhtm indexphp;
}
location ~ (|php)$ {
root /www;
fastcgi_pass :;
fastcgi_cache NAME;
fastcgi_cache_valid h;
fastcgi_cache_min_uses ;
fastcgi_cache_use_stale error timeout invalid_header http_;
fastcgi_index indexphp;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgiconf;
#設置緩存的過程中發現無法獲取cookie經查需要定義這句話
fastcgi_pass_header SetCookie;
}
log_format access $remote_addr $remote_user [$time_local] "$request"
$status $body_bytes_sent "$http_referer"
"$http_user_agent" $http_x_forwarded_for;
access_log /
}

  
總的來說 nginx的proxy_cache和fastcgi_cache的緩存配置差不多

memcache緩存
在討論memcache緩存之前我們先了解下mysql的內存緩存吧
mysql的內存緩存可以在mycnf中指定大小內存表和臨時表不同臨時表也是存放內存中臨時表最大的內存需要通過tmp_table_size=M設定當數據查過臨時表的最大值設定時自動轉為磁盤表此時因需要進行IO操作性能會大大下降而內存表不會內存滿了後會提示數據滿錯誤

復制代碼 代碼如下:
create table test
(
id int unsigned not null auto_increment primary key
state char()
type char()
date char()
)engine=memory default charset=utf

  
內存表的特性
內存表的表定義存放在磁盤上擴展名為frm所以重啟不會丟失
內存表的數據是存放在內存中重啟會丟失數據
內存表使用一個固定的長度格式
內存表不支持blob或text列比如varchar與text字段就不會被支持
內存表支持auto_increment列和對可包含null值的列的索引
內存表不支持事物
內存表是表鎖當修改頻繁時性能可能會下降

下面我們來看看memcache相對而言mysql的內存表限制較多
memcache的用途
提高系統的並發能力
減輕數據庫的負擔
memcache linux系統位只支持G內存同時memcache最長保存時間為


From:http://tw.wingwit.com/Article/program/PHP/201311/21248.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.