I’ve seen lots of tutorials on internet explaining how set nginx to use memcached module. But, i’ve rarely seen them explaining, even the easiest one on how to populate memcached with data generated by php. When i’m getting in touch with memcached for the first time, i thought default configuration like this will be working out of the box. without touching php script.
Well, i was totally confused :D. so, to prevent other people misinterpret on how nginx memcached module works, i wrote simple examples, and simple explainations on how to configure nginx and populate data generated from php.
set $memcached_key “kutu:$request_uri”; will tell nginx to use memcahed key “kutu:$request_uri” Example: “kutu:/mc.php”
memcached_pass 127.0.0.1:11211; tell nginx to pass “kutu:$request_uri” to memcached backend.
if key is found in memcached backend send the value to client, if not error_page 404 405 502 let’s fallback to @cache_miss and process request as usual.
Well, this was well known configuration to make nginx talked to php-cgi engine. no need to explain much further. Remember, default configuration surely will be run properly, even without memcached server running on your system. :D. because that’s how the configuration tells nginx what to to do. jump to fallback (@cache_miss) if there’s error_page 404 405 502 responses.
have you populate data to memcached properly?when browser showing garbage that mean nginx have problem parsing mime type either nginx receiving garbage from memcached.
When I run the script db.php, the page is blank. Another doubt is regarding the observation of the first post. He mentions the path “root/path/ to/yoursite/htdocs;” …. This path is the location of the web server? In my case that would be the nginx “/usr/share/nginx/www”? Is this the way?
Just a little fix.
Insert “root /path/to/yoursite/htdocs;” into “server { … }”.
Is “CREATE DATABASE memcache”, not “CREATE DATABSE memcache;”.
thanks for correction
Very usefull tutorial for newbies like me.
Sorry, I fogot to say thank you.
you’re wellcome
I have try this but on browser showing me garbage characters any idea why this happening?
have you populate data to memcached properly?when browser showing garbage that mean nginx have problem parsing mime type either nginx receiving garbage from memcached.
Hi,
When I run the script db.php, the page is blank. Another doubt is regarding the observation of the first post. He mentions the path “root/path/ to/yoursite/htdocs;” …. This path is the location of the web server? In my case that would be the nginx “/usr/share/nginx/www”? Is this the way?
db.php is inclusion for mc.php
see this line in mc.php
1
...
2
include
(
'./db.php'
);
3
...
that’s default nginx’s path, you can specified custom path like this, and put scripts there
1
location / {
2
root /path/to/doc;
3
index index.php index.html index.htm;
4
}
Thanks for nice article! After 20th Google’s page I understood how to make it work!