- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
Memcache是一个通用的内存缓存系统。 它通常用于加速缓慢的数据访问。 NGINX memcached模块提供各种指令,可以配置为直接访问Memcache提供内容,从而避免对上游服务器的请求。
除了指令之外,模块还创建$ memcached_key变量,用于执行高速缓存查找。 在使用Memcache查找之前,必须在$memcached_key变量中设置一个值,该变量根据请求URL确定。
此指令用于指定memcached服务器的位置。 地址可以通过以下任意方式指定:
?域名或IP地址,以及可选端口
?使用带unix:前缀的的Unix域套接字
?使用NGINX upstream指令创建的一组服务器
该指令仅在NGINX配置的location和location if中使用。 如下例子:
location /myloc/{
set $memached_key $uri;
memcached_pass localhost:11211;
}
memcached connect_timeout指令设置在NGINX和memcached服务器之间建立连接的超时。
memcached_send_timeout指令设置将请求写入memcached服务器的超时。 memcached_read_timeout指令设置从memcached服务器读取响应的超时。
所有指令的默认值为60秒,可在NGINX配置的http,server和location区块下使用。 如下例子:
http{
memcached_send_timeout 30s;
memcached_connect_timeout 30s;
memcached_read_timeout 30s;
}
此指令指定服务器的哪个IP与memcached连接,默认为关闭,即不指定,那么Nginx会自动选择服务器的一个IP用来连接。
server{ location /python/css/ { alias "/code/location/css/"; } location /python/ { set $memcached_key "$request_method$request_uri"; charset utf-8; memcached_pass 127.0.0.1:11211; error_page 404 502 504 = @pythonfallback; default_type text/html; } location @pythonfallback { rewrite ^/python/(.*) /$1 break; proxy_pass http://www.landui.com:5000; proxy_set_header X-Cache-Key "$request_method$request_uri"; } # Rest NGINX configuration omitted for brevity }
售前咨询
售后咨询
备案咨询
二维码
TOP