Application cookbook which installs and configures the memcached.
- Ubuntu
- RHEL
Name | Description |
---|---|
poise | Library cookbook built to aide in writing reusable cookbooks. |
poise-service | Library cookbook built to abstract service management. |
All attributes are settings in which memcached supports out of the box. If there is anyting additional you would like to see please submit a PR. Thanks!
The most basic approach to get all of the default memcached settings is here:
memcached_instance 'test'
You have the ability to tune everything and anything memcached. You simply have to pass the attribute name like so:
memcached_instance instance_name do
bind_ip node.ipaddress
port 11212
max_connections 2048
cachesize 128
end
- Author:: Anthony Caiafa ([email protected])