silverstripe-framework/docs/en/02_Developer_Guides/08_Performance
Stuart d6cb2419b8 Correct Memcached config in example
Unlike Libmemcached, the Memcached backend server config must be nested inside an array() with a single key 'servers' - otherwise the default host of 127.0.0.1 is used.

array(
	'servers' => array(
		'host' => 'localhost', 
		'port' => 11211, 
		'persistent' => true, 
		'weight' => 1, 
		'timeout' => 1,
		'retry_interval' => 15, 
		'status' => true, 
		'failure_callback' => ''
	)
)
2015-07-11 23:18:18 +12:00
..
01_Caching.md Correct Memcached config in example 2015-07-11 23:18:18 +12:00
02_HTTP_Cache_Headers.md Rewrite and tidy up of performance section 2014-12-15 09:12:46 +13:00
03_Profiling.md Rewrite and tidy up of performance section 2014-12-15 09:12:46 +13:00
04_Static_Publishing.md Rewrite and tidy up of performance section 2014-12-15 09:12:46 +13:00
05_Resource_Usage.md Review and tidy up of configuration guide 2014-12-15 09:12:46 +13:00
00_Partial_Caching.md Update 00_Partial_Caching.md 2015-03-09 12:50:05 +01:00
index.md Rewrite and tidy up of performance section 2014-12-15 09:12:46 +13:00