summaryrefslogtreecommitdiff
path: root/kohana/config/cache_memcache.php
diff options
context:
space:
mode:
Diffstat (limited to 'kohana/config/cache_memcache.php')
-rw-r--r--kohana/config/cache_memcache.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/kohana/config/cache_memcache.php b/kohana/config/cache_memcache.php
new file mode 100644
index 00000000..c9e10232
--- /dev/null
+++ b/kohana/config/cache_memcache.php
@@ -0,0 +1,20 @@
+<?php defined('SYSPATH') or die('No direct script access.');
+/**
+ * @package Cache:Memcache
+ *
+ * memcache server configuration.
+ */
+$config['servers'] = array
+(
+ array
+ (
+ 'host' => '127.0.0.1',
+ 'port' => 11211,
+ 'persistent' => FALSE,
+ )
+);
+
+/**
+ * Enable cache data compression.
+ */
+$config['compression'] = FALSE;