Skip to content

Instantly share code, notes, and snippets.

@paulovittor23
Created October 29, 2012 16:56
Show Gist options
  • Save paulovittor23/3974884 to your computer and use it in GitHub Desktop.
Save paulovittor23/3974884 to your computer and use it in GitHub Desktop.
mecached_yml
# base config
base_cache: &base_cache
expires: 86400 #session expired after 24 hours
servers:
- '127.0.0.1:11211'
cucumber:
<<: *base_cache
# local
local:
<<: *base_cache
# dev
development:
<<: *base_cache
servers:
- '172.16.196.79:11211'
- '172.16.196.23:11211'
# qa
qa: &qa
<<: *base_cache
servers:
- '172.16.198.152:11211'
- '172.16.198.153:11211'
sandbox:
<<: *base_cache
servers:
- '172.16.150.42:11211'
- '172.16.150.58:11211'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment