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 /data0/proxy_temp_dir;
#設置Web緩存區名稱爲cache_one,內存緩存空間大小爲200MB,1天沒有被訪問的內容自動清除,硬盤緩存空間大小爲30GB。
proxy_cache_path /data0/proxy_cache_dir levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g;
server
{
listen 80;
server_name www.yourdomain.com 192.168.8.42;
index index.html index.htm;
root /data0/htdocs/www;
location /
{
#若是後端的服務器返回50二、50四、執行超時等錯誤,自動將請求轉發到upstream負載均衡池中的另外一臺服務器,實現故障轉移。
proxy_next_upstream http_502 http_504 error timeout invalid_header;
proxy_cache cache_one;
#對不一樣的HTTP狀態碼設置不一樣的緩存時間
proxy_cache_valid 200 304 12h;
#以域名、URI、參數組合成Web緩存的Key值,Nginx根據Key值哈希,存儲緩存內容到二級緩存目錄內
proxy_cache_key $host$uri$is_args$args;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://backend_server;
expires 1d;
}
#用於清除緩存,假設一個URL爲http://192.168.8.42/test.txt,經過訪問http://192.168.8.42/purge/test.txt就能夠清除該URL的緩存。
location ~ /purge(/.*)
{
#設置只容許指定的IP或IP段才能夠清除URL緩存。
allow 127.0.0.1;
allow 192.168.0.0/16;
deny all;
proxy_cache_purge cache_one $host$1$is_args$args;
}
#擴展名以.php、.jsp、.cgi結尾的動態應用程序不緩存。
location ~ .*\.(php|jsp|cgi)?$
{
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://backend_server;
}
access_log off;
}
}
fastcgi_cache緩存設置
#定義緩存存放的文件夾
fastcgi_cache_path /tt/cache levels=1:2 keys_zone=NAME:2880m inactive=2d max_size=10G;
#定義緩存不一樣的url請求
fastcgi_cache_key "$scheme$request_method$host$uri$arg_filename$arg_x$arg_y";
server {
listen 8080;
server_name
www.example .com;
location / {
root /www;
index index.html index.htm index.php;
}
location ~ (|.php)$ {
root /www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_cache NAME;
fastcgi_cache_valid 200 48h;
fastcgi_cache_min_uses 1;
fastcgi_cache_use_stale error timeout invalid_header http_500;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi.conf;
#設置緩存的過程當中發現沒法獲取cookie,經查須要定義這句話
fastcgi_pass_header Set-Cookie;
}
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 /httplogs/access.log access;
}
總的來講 nginx的proxy_cache和fastcgi_cache的緩存配置差很少。
memcache緩存
在討論memcache緩存以前,咱們先了解下mysql的內存緩存吧
mysql的內存緩存能夠在my.cnf中指定大小:內存表和臨時表不一樣,臨時表也是存放內存中,臨時表最大的內存須要經過tmp_table_size=128M設定。當數據查過臨時表的最大值設定時,自動轉爲磁盤表,此時因須要進行IO操做,性能會大大降低,而內存表不會,內存滿了後,會提示數據滿錯誤。
例:
create table test
(
id int unsigned not null auto_increment primary key
state char(10),
type char(20),
date char(30)
)engine=memory default charset=utf8
內存表的特性:
1.內存表的表定義存放在磁盤上,擴展名爲.frm,因此重啓不會丟失
2.內存表的數據是存放在內存中,重啓會丟失數據
3.內存表使用一個固定的長度格式
4.內存表不支持blob或text列,好比varchar與text字段就不會被支持
5.內存表支持auto_increment列和對可包含null值的列的索引
6.內存表不支持事物
7.內存表是表鎖,當修改頻繁時,性能可能會降低
轉自:
http://www.nowamagic.net/librarys/veda/detail/1405 php
下面咱們來看看memcache,相對而言mysql的內存表限制較多。
memcache的用途
1.提升系統的併發能力
2.減輕數據庫的負擔
注:memcache linux系統32位只支持4G內存,同時memcache最長保存時間爲30天。