Adding a default memcached config file - GWB
diff --git a/application/config/memcached.php b/application/config/memcached.php
index d2ece65..1b34aa6 100644
--- a/application/config/memcached.php
+++ b/application/config/memcached.php
@@ -3,14 +3,19 @@
 | -------------------------------------------------------------------------
 | Memcached settings
 | -------------------------------------------------------------------------
-| Memcached doesn't seem to like hostnames. Try use an IP first. -GWB
+| To add another server, just add another set in the array.
+|
+| NOTE: Memcached doesn't seem to like hostnames. Try using an IP first. 
+| -GWB
 |
 */
 
-$config['default'] = array(
-	'hostname' => '127.0.0.1',
-	'port'     => '11211',
-	'weight'   => '1'        
+$config = array(
+	'default' => array(
+		'hostname' => '127.0.0.1',
+		'port'     => '11211',
+		'weight'   => '1',
+	),      
 );  
 
 /* End of file memcached.php */