nginc+memcache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginc+memcache相关的知识,希望对你有一定的参考价值。

memcache 分为服务端和客户端。服务端用来存放缓存,客户端用来操作缓存。
因此,可以使用 nginx 直接访问 Memcache,并用$uri 和$args 等 Nginx 内置变量设定缓存 key规则,这样,当缓存命中时,Nginx 可以跳过通过 fastcgi 和 php 通信的过程,直接从 memcache中获取数据并返回。
OpenResty是一个基于 Nginx 与 Lua 的高性能 Web 平台,其内部集成了大量精良的 Lua 库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态 Web 应用、Web 服务和动态网关。



1.下载openresty的压缩包,opwnresty中含有自身的nginx,因此不需要额外安装nginx
[[email protected] ~]# tar zxf openresty-1.11.2.3.tar.gz
[[email protected] ~]# cd openresty-1.11.2.3
[[email protected] openresty-1.11.2.3]# yum install gcc-c++ -y
[[email protected] openresty-1.11.2.3]# yum install pcre-devel -y
[[email protected] openresty-1.11.2.3]# yum install openssl-devel -y
[[email protected] openresty-1.11.2.3]# ./configure
[[email protected] openresty-1.11.2.3]# gmake
[[email protected] openresty-1.11.2.3]# gmake install
[[email protected] openresty-1.11.2.3]# cd /usr//local/openresty/nginx/conf/



2.更改配置文件
[[email protected] conf]# vim nginx.conf
###########################################
 18 http {
 19     upstream memcache {        ##nginx 模块中,uosteam 主要用于完成数据的接收,处理,转发
 20     server 127.0.0.1:11211;        ##设置默认端口号
 21     }
 52         location /memc {
 53                 internal;        ##只接受内部访问,不接收外部 http 请求
 54                 memc_connect_timeout 100ms;
 55                 memc_send_timeout 100ms;
 56                 memc_read_timeout 100ms;
 57                 set $memc_key $query_string;    ##使用 Nginx 内置的$query_string 来作为 key
 58                 set $memc_exptime 300;        ##缓存失效时间
 59                 memc_pass memcache;    
 60                 }    ##将请求的 URL 和后端服务返回的有效结果组成 key-value 存入 memcache服务
 72         location ~ \.php$ {
 73                 set $key $uri$args;
 74                 srcache_fetch GET /memc $key;
            ##注册一个输入拦截器到 location,这个配置将在location 进入时被执行
 75                 srcache_store PUT /memc $key;
            ##注册一个输出拦截器到 location,当 location执行完成并输出时会被执行
 76                 root            html;
 77                 fastcgi_pass    172.0.0.60:9000;
 78                 fastcgi_index   index.php;
 79                 include         fastcgi.conf;
 80         }##为“~ \.php$”配置缓存,表示所有以“.php”结尾的请求都会结果被缓存
    }
##当所请求的 uri 以“.php”结尾时,首先到 memcache 中查询有没有以$uri$args 为 key 的数据,如果有则直接返回;否则,执行 location 的逻辑,如果返回的 http 状态码为 200,则在输出前以$uri$args 为 key,将输入结果存入 memcache

###########################################
[[email protected] conf]# /usr/local/openresty/nginx/sbin/nginx -t
[[email protected] conf]# /usr/local/openresty/nginx/sbin/nginx -s reload


[[email protected] conf]# /etc/init.d/httpd start    
##注意:http与nginx的端口号都为80,因此需要修改http的端口号
[[email protected] html]# /etc/init.d/iptables stop
[[email protected] html]# yum install memcached -y


测试:
1.开启memcached,在物理机中进行压力测试
[[email protected] conf]# /etc/init.d/memcached start
[[email protected] Desktop]# ab -c 10 -n 50000 http://172.25.60.3/index.php
技术分享

2.关闭memcached,在物理机中进行压力测试
[[email protected] conf]# /etc/init.d/memcached stop
[[email protected] Desktop]# ab -c 10 -n 50000 http://172.25.60.3/index.php
技术分享

以上是关于nginc+memcache的主要内容,如果未能解决你的问题,请参考以下文章

nginc+memcache

nginc+memcache

Memcached详解

查看Memcache运行状况

缓存之Memcache

nginx+php+memcached