我在 Centos 6 上使用 memcached 时遇到了问题,apache 在端口 8080 上,Nginx 在端口 80 上作为 apache 的反向代理。我安装了 Memcached 来缓存所有静态文件:这是我的 nginx 的 memcached 配置:
server {
access_log off;
error_log logs/vhost-error_log warn;
listen 80;
server_name xxx.com www.xxx.com;
location ~* ^.+. (js|css|jpg|jpeg|png|gif|gz|tgz|bz2|tbz|mp3|ogg|swf|pdf|ico|zip|rar|iso|doc|xls|exe|ppt|txt|tar|mid|midi|wav|bmp|rtf|ogv|flv|mpeg|mpg|mpeg4|mp4|avi|wmv|docx|xlsx|pptx|3gp|7z|acc|gzip|img|m4a|m4v|mkv|mov|msi|chm|rm|w3g|w3x|log|dll)$ {
root /home/xxx/domains/xxx.com/public_html;
expires max;
set $memcached_key $uri;
memcached_pass 127.0.0.1:11211;
error_page 404 = @apache;
access_log /var/log/httpd/domains/xxx.com.log;
log_not_found off;
}
Memcached 正在监听,但是虽然我浏览了该网站很多次,却没有建立会话。
Every 2.0s: netstat -natp |grep :11211 Mon Mar 2 13:50:47 2015
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN 10504/memcached
tcp 0 0 127.0.0.1:38126 127.0.0.1:11211 TIME_WAIT -
tcp 0 0 127.0.0.1:38124 127.0.0.1:11211 TIME_WAIT -
tcp 0 0 127.0.0.1:38144 127.0.0.1:11211 TIME_WAIT -
tcp 0 0 127.0.0.1:38127 127.0.0.1:11211 TIME_WAIT -
.....
以下是 memcached 的统计数据:
STAT pid 10504
STAT uptime 469
STAT time 1425279094
STAT version 1.4.4
STAT pointer_size 64
STAT rusage_user 0.023996
STAT rusage_system 0.067989
STAT curr_connections 5
STAT total_connections 383
STAT connection_structures 6
STAT cmd_get 145
STAT cmd_set 0
STAT cmd_flush 0
STAT get_hits 0
STAT get_misses 145
STAT delete_misses 0
STAT delete_hits 0
STAT incr_misses 0
STAT incr_hits 0
STAT decr_misses 0
STAT decr_hits 0
STAT cas_misses 0
STAT cas_hits 0
STAT cas_badval 0
STAT auth_cmds 0
STAT auth_errors 0
STAT bytes_read 10726
STAT bytes_written 181940
STAT limit_maxbytes 1073741824
STAT accepting_conns 1
STAT listen_disabled_num 0
STAT threads 4
STAT conn_yields 0
STAT bytes 0
STAT curr_items 0
STAT total_items 0
STAT evictions 0
get_hit 数没有增加,而 get_miss 数却在增加。请帮我弄清楚发生了什么。谢谢
答案1
嗯,你的 memcached 服务器中没有任何数据 ( STAT total_items 0
)。
因此 nginx 尝试查找 145 个项目,但未能找到任何项目。
完全正确。Nginx
不会在该配置下将任何内容存储在 memcached 中(实际上我认为它无法做到这一点,只能通过非标准模块来实现):https://github.com/bpaquet/ngx_http_enhanced_memcached_module)。
所以需要搞清楚一个将数据存入memcached的进程。