nginx服务器缓存文件清理,清除nginx缓存文件并不总是有效

我运行nginx服务器+ PHP webservices API。我使用nginx的fastcgi_cache来缓存所有的GET请求,当某些资源更新时,我清除一个或多个相关的缓存资源。清除nginx缓存文件并不总是有效

我正在使用的方法是为我要清除的每个资源计算nginx缓存文件名,然后删除该文件。大多数情况下,这很有效。

但是,我发现有时,即使删除缓存文件后,nginx仍会从缓存中返回数据。

这不是选择正确的缓存文件,删除了一个问题 - 我的测试的一部分,我已经删除了整个缓存目录,nginx的仍返回HIT响应

是任何人都知道的为什么这可能会发生?是否有可能涉及另一个缓存?例如,操作系统是否将缓存文件的缓存版本返回给nginx,是否nginx不知道它已被删除?

我在CentOS运行此,以及与此nginx的配置(减去不相关部分):

user nginx;

# Let nginx figure out the best value

worker_processes auto;

events {

worker_connections 10240;

multi_accept on;

use epoll;

}

# Maximum number of open files should be at least worker_connections * 2

worker_rlimit_nofile 40960;

# Enable regex JIT compiler

pcre_jit on;

http {

# TCP optimisation

sendfile on;

tcp_nodelay on;

tcp_nopush on;

# Configure keep alive

keepalive_requests 1000;

keepalive_timeout 120s 120s;

# Configure SPDY

spdy_headers_comp 2;

# Configure global PHP cache

fastcgi_cache_path /var/nginx/cache levels=1:2 keys_zone=xxx:100m inactive=24h;

# Enable open file caching

open_file_cache max=10000 inactive=120s;

open_file_cache_valid 120s;

open_file_cache_min_uses 5;

open_file_cache_errors off;

server {

server_name xxx;

listen 8080;

# Send all dynamic content requests to the main app handler

if (!-f $document_root$uri) {

rewrite ^/(.+) /index.php/$1 last;

rewrite ^/ /index.php last;

}

# Proxy PHP requests to php-fpm

location ~ [^/]\.php(/|$) {

# Enable caching

fastcgi_cache xxx;

# Only cache GET and HEAD responses

fastcgi_cache_methods GET HEAD;

# Caching is off by default, an can only be enabled using Cache-Control response headers

fastcgi_cache_valid 0;

# Allow only one identical request to be forwarded (others will get a stale response)

fastcgi_cache_lock on;

# Define conditions for which stale content will be returned

fastcgi_cache_use_stale error timeout invalid_header updating http_500 http_503;

# Define cache key to uniquely identify cached objects

fastcgi_cache_key "$scheme$request_method$host$request_uri";

# Add a header to response to indicate cache results

add_header X-Cache $upstream_cache_status;

# Configure standard server parameters

fastcgi_split_path_info ^(.+\.php)(/.+)$;

include fastcgi_params;

# php-fpm config

fastcgi_param SCRIPT_URL $fastcgi_path_info;

fastcgi_param PATH_INFO $fastcgi_path_info;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

fastcgi_param REQUEST_SCHEME $scheme;

fastcgi_param REMOTE_USER $remote_user;

# Read buffer sizes

fastcgi_buffer_size 128k;

fastcgi_buffers 256 16k;

fastcgi_busy_buffers_size 256k;

fastcgi_temp_file_write_size 256k;

# Keep connection open to enable keep-alive

fastcgi_keep_conn on;

# Proxy to PHP

fastcgi_pass unix:/var/run/php-fpm/fpm.sock;

}

}

}

现在我看这个,可以在open_file_cache参数是影响缓存文件?

任何想法?

+0

来想起来了,这其实是一个非常好的问题。:-) –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值