--- ./sites/default/settings.orig.php	2006-04-24 15:25:37.000000000 -0400
+++ ./sites/default/settings.php	2006-05-27 01:06:52.000000000 -0400
@@ -147,3 +147,32 @@
 #   'anonymous' => 'Visitor'
 # );
 
+
+/**
+ * Set caching preference.
+ * Choose one of the following cache methods.
+ *
+ * CACHE_METHOD_NONE = 0
+ * CACHE_METHOD_DATABASE = 1  // default
+ * CACHE_METHOD_MEMCACHED = 2
+ */
+$cache_mode = CACHE_METHOD_DATABASE;
+
+/**
+ * When using CACHE_METHOD_MEMCACHED, uncomment and adjust
+ * the following settings.
+ *
+ * $memcached_options = array(
+ *      'servers' => array(
+ *        array('ip' => '127.0.0.1', 'port' => 11211),
+ *        array('ip' => '127.0.0.1', 'port' => 11212)
+ *        // Add additional servers as need.
+ *      )
+ * );
+ */
+#$memcached_options = array(
+#	'servers' => array(
+#           array( 'ip' => '127.0.0.1', 'port' => 11211)
+#         )
+#);
+
