/usr/share/doc/puppet-module-saz-memcached/README.md is in puppet-module-saz-memcached 2.2.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # puppet-memcached
[![Build Status](https://secure.travis-ci.org/saz/puppet-memcached.png)](http://travis-ci.org/saz/puppet-memcached)
Manage memcached via Puppet
## How to use
### Use roughly 90% of memory
```ruby
class { 'memcached': }
```
### Set a fixed memory limit in MB
```ruby
class { 'memcached':
max_memory => 2048
}
```
### Use 12% of available memory
```ruby
class { 'memcached':
max_memory => '12%'
}
```
### Other class parameters
* $package_ensure = 'present'
* $logfile = '/var/log/memcached.log'
* $max_memory = false
* $item_size = false
* $lock_memory = false (WARNING: good if used intelligently, google for -k key)
* $listen_ip = '0.0.0.0'
* $tcp_port = 11211
* $udp_port = 11211
* $user = '' (OS specific setting, see params.pp)
* $max_connections = 8192
* $verbosity = undef
* $unix_socket = undef
* $install_dev = false (TRUE if 'libmemcached-dev' package should be installed)
* $processorcount = $::processorcount
|