Skip to content

gregpalmier/memcached-cookbook

Repository files navigation

memcached cookbook

This cookbook provides a basic memcached install and config.

Requirements

Usage

In your Vagrantfile, customize these attributes with:

chef.json = {
    memcached: {
      memory: "64",
  }
}

Add the recipe to your run_list:

chef.run_list = [
  'recipe[memcached-cookbook]'
]

Attributes

Attributes include service level parameters and OS-level config

default['memcached']['enabled']           = 'yes'
default['memcached']['logfile']           = '/var/log/memcached.log'
default['memcached']['memory']            = '128'
default['memcached']['port']              = '11211'
default['memcached']['listen_ip']         = '127.0.0.1'
default['memcached']['connection_limit']  = '1024'

Recipes

default.rb - Install Memcached.

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (like add_component_x)
  3. Write your change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request using Github

License and Authors

License: see LICENSE. Authors: gregpalmier

About

Memcached Chef Cookbook

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published