Skip to content

Instantly share code, notes, and snippets.

@gjuric
Created November 21, 2013 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gjuric/7580148 to your computer and use it in GitHub Desktop.
Save gjuric/7580148 to your computer and use it in GitHub Desktop.
nginx memcache keepalive
# Ovo mora biti izvan server bloka
upstream memcached_backend {
server 127.0.0.1:11211;
keepalive 50;
}
# unutar server bloka
location /widget/ {
....
# umjesto "memcached_pass 127.0.0.1:11211;"
memcached_pass memcached_backend;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment