Update of /cvsroot/phpslash/phpslash-dev/include/class/jpcache
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5578/phpslash-dev/include/class/jpcache
Modified Files:
jpcache-config.php
Log Message:
Adding memcache support to jpcache
Index: jpcache-config.php
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/include/class/jpcache/jpcache-config.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** jpcache-config.php 20 Nov 2003 21:14:59 -0000 1.2
--- jpcache-config.php 20 Sep 2004 16:16:37 -0000 1.3
***************
*** 21,24 ****
--- 21,25 ----
//$JPCACHE_TYPE = "mysql";
//$JPCACHE_TYPE = "dbm";
+ $JPCACHE_TYPE = "memcache";
//$JPCACHE_TYPE = "phplib";
***************
*** 65,67 ****
--- 66,74 ----
// collection is executed. Please check
// first if this works on your mySQL!
+
+ /**
+ * Memcache based caching settings
+ */
+ $JPCACHE_MEMCACHE_HOST = "localhost"; // Memcache Server
+ $JPCACHE_MEMCACHE_PORT = "11211"; // Port
?>
|