带有$ http_cookie的Nginx fastcgi_cache_key

时间:2011-12-16 09:48:46

标签: php drupal session caching nginx

我正在尝试使用nginx fastcgi缓存来扩展Drupal。我正在使用

fastcgi_cache_key $http_cookie$request_method$host$request_uri;
fastcgi_cache_methods GET HEAD;
fastcgi_pass   unix:/tmp/php-fpm.sock;
include fastcgi_params;
fastcgi_buffers 256 4k;
fastcgi_intercept_errors on;
fastcgi_read_timeout 14400; 
fastcgi_index index.php;
fastcgi_hide_header 'X-Drupal-Cache';
fastcgi_hide_header 'X-Generator';
fastcgi_ignore_headers Cache-Control Expires;
fastcgi_cache drupal;
fastcgi_cache_valid 200 301 1s;
fastcgi_cache_valid 302 1m;
fastcgi_cache_valid 404 1m;
fastcgi_cache_use_stale error timeout invalid_header updating http_500;     
fastcgi_max_temp_file_size 2M;
add_header X-Micro-Cache $upstream_cache_status;

用户看到他们不应该看到的页面会有任何问题吗?

我按照这个人的微缓存指南

http://fennb.com/microcaching-speed-your-app-up-250x-with-no-n

但我的大部分网站流量都是经过身份验证的用户,因此我也需要以某种方式缓存这些用户。我已经在localhost上测试了但是我不确定我是否可以在生产中使用它。

0 个答案:

没有答案