Adding a default memcached config file - GWB
diff --git a/application/config/memcached.php b/application/config/memcached.php
new file mode 100644
index 0000000..d2ece65
--- /dev/null
+++ b/application/config/memcached.php
@@ -0,0 +1,17 @@
+<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
+/*
+| -------------------------------------------------------------------------
+| Memcached settings
+| -------------------------------------------------------------------------
+| Memcached doesn't seem to like hostnames. Try use an IP first. -GWB
+|
+*/
+
+$config['default'] = array(
+	'hostname' => '127.0.0.1',
+	'port'     => '11211',
+	'weight'   => '1'        
+);  
+
+/* End of file memcached.php */
+/* Location: ./application/config/memcached.php */
\ No newline at end of file