[pLog-svn] r4206 - plog/trunk/config

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Oct 29 16:36:11 GMT 2006


Author: oscar
Date: 2006-10-29 16:36:11 +0000 (Sun, 29 Oct 2006)
New Revision: 4206

Added:
   plog/trunk/config/cache.properties.php
Log:
this file should have been checked in a while ago...


Added: plog/trunk/config/cache.properties.php
===================================================================
--- plog/trunk/config/cache.properties.php	2006-10-29 16:07:25 UTC (rev 4205)
+++ plog/trunk/config/cache.properties.php	2006-10-29 16:36:11 UTC (rev 4206)
@@ -0,0 +1,28 @@
+<?php
+# 
+# Settings for the data cache. If you're unsure what this means,
+# do not modify these settings. If you are planning to use 
+# memcached as your cache system, please take a look below.
+#
+
+$config["cache_method"] = "cache_lite";
+
+#
+# cache settings for Cache_Lite
+#
+$config["cache_lite_cache_dir"] = "./tmp/";
+$config["cache_lite_life_time"] = 604800;
+$config["cache_lite_read_control"] = false;
+$config["cache_lite_automatic_serialization"] = true;
+$config["cache_lite_hashed_directory_level"] = 2;
+
+#
+# cache settings for Memcached
+#
+$config["memcached_servers"] = array( "127.0.0.1:11211" );
+$config["memcached_life_time"] = 604800;
+$config["memcached_debug"] = false;
+$config["memcached_compress_threshold"] = 10240;
+$config["memcached_persistant"] = true;
+
+?>
\ No newline at end of file



More information about the pLog-svn mailing list