3 messages in ru.sysoev.nginxhow can i use memcached_module
FromSent OnAttachments
焦胜强May 6, 2007 11:11 am 
Liang JinMay 6, 2007 4:27 pm 
焦胜强May 6, 2007 9:35 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:how can i use memcached_moduleActions...
From:焦胜强 (jiao@public.gmane.org)
Date:May 6, 2007 11:11:35 am
List:ru.sysoev.nginx

HI: how can use the memcached_module in php? can someone give a example? I can not understand this configfile: ... upstream backend { server localhost:80; } ... location /memcached/ { internal; ssi on; set $memuri $uri; set $memcached_key "$memuri"; memcached_pass localhost:10000; error_page 404 =200 /memcached-miss$memuri; } ... location /memcached-miss/ { internal; ssi on; rewrite ^/memcached-miss/(.*)$ /$1 break; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://backend; proxy_redirect off; }