nginx+memcached缓存图片
Posted COCO歧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx+memcached缓存图片相关的知识,希望对你有一定的参考价值。
1.nginx的配置如下:
location ^~ /images/ {
set $memcached_key
"$uri"
; #用URI作为key去memcached中去读取内容
memcached_pass 127.0.0.1:11211;
memcached_connect_timeout 5s;
memcached_read_timeout 5s;
memcached_send_timeout 5s;
memcached_buffer_size 32k;
error_page 404 502 504 = @fallback;
}
location @fallback {
proxy_pass http:
//backend;
}
2.使用php向memcached写入一张图片:
<?php
$pic = file_get_contents(
‘./test.jpg‘
);
$memcache =
new
Memcache;
$memcache->connect(
‘localhost‘
,
11211
);
$memcache->add(
‘/images/test.jpg‘
, $pic,
false
,
0
);
//这里设置缓存不过期
$memcache->close();
3.查看图片
根据域名,使用浏览器访问:http://test.localhost/images/test.jpg
以上是关于nginx+memcached缓存图片的主要内容,如果未能解决你的问题,请参考以下文章
为 memcached 和 Rails 组合片段和对象缓存的最佳方式