$_defaultConfig
$_defaultConfig : array
The default config used unless overridden by runtime configuration
compress
Whether to compress dataduration
Specify how long items in this cache configuration last.groups
List of groups or 'tags' associated to every key stored in this config. handy for deleting a complete group from cache.username
Login to access the Memcache serverpassword
Password to access the Memcache serverpersistent
The name of the persistent connection. All configurations using the same persistent value will share a single underlying connection.prefix
Prepended to all entries. Good for when you need to share a keyspace with either another cache config or another application.probability
Probability of hitting a cache gc cleanup. Setting to 0 will disable cache::gc from ever being called automatically.serialize
The serializer engine used to serialize data. Available engines are php, igbinary and json. Beside php, the memcached extension must be compiled with the appropriate serializer support.servers
String or array of memcached servers. If an array MemcacheEngine will use them as a pool.options
- Additional options for the memcached client. Should be an array of option => value. Use the \Memcached::OPT_* constants as keys.