5 messages in ru.sysoev.nginxRe: Memcached
FromSent OnAttachments
Jason BowermanDec 21, 2006 4:56 am 
Igor SysoevDec 21, 2006 5:21 am 
Jason BDec 22, 2006 7:16 pm 
Igor SysoevDec 22, 2006 11:52 pm 
Jason BDec 27, 2006 6:05 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: MemcachedActions...
From:Igor Sysoev (is-G@public.gmane.org)
Date:Dec 21, 2006 5:21:13 am
List:ru.sysoev.nginx

On Thu, 21 Dec 2006, Jason Bowerman wrote:

I'm look for a way for Nginx to use Memcache as a storage for static HTML/images

On this page I found a reference:

http://article.gmane.org/gmane.comp.web.nginx.english/56/match=memcached

But what is "ngx_http_memcached_module" ? I cannot find any other references.

The reason I'm considering memcached is that I'm concerned about a slow harddrive being a bottleneck. From what I understand, Nginx does no caching at all?

Currently nginx does not cache at all. I plan to add in near future.

The ngx_http_memcached_module will be extended. Currently it can be used as:

server {

location / { memcached_pass name:11211; error_page 404 /fallback; }

location = /fallback { proxy_pass backend; }

The backend should set data to the memcached. The memcached key is "/uri?args".