Amend comments & default port for Redis
authoreileen <emcnaughton@wikimedia.org>
Mon, 11 Apr 2016 23:42:50 +0000 (11:42 +1200)
committereileen <emcnaughton@wikimedia.org>
Mon, 11 Apr 2016 23:44:16 +0000 (11:44 +1200)
CRM/Utils/Cache/Redis.php
templates/CRM/common/civicrm.settings.php.template

index 793f311bb59e0d2700e7575de8ce62f0097a8ac5..da73fca9c58a825a627214c642cfe5be5b50083e 100644 (file)
@@ -34,7 +34,7 @@
  */
 class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface {
   const DEFAULT_HOST    = 'localhost';
-  const DEFAULT_PORT    = 11211;
+  const DEFAULT_PORT    = 6379;
   const DEFAULT_TIMEOUT = 3600;
   const DEFAULT_PREFIX  = '';
 
index cee15b1d74a2b023b49424079db6532d29e19dc8..f6906bcdf1bbbd2d4f90ebe293c2cbf2349cbc1a 100644 (file)
@@ -322,14 +322,16 @@ if (!defined('CIVICRM_DB_CACHE_HOST')) {
 }
 
 /**
- * Change this if you are not using the standard port for your cache server
+ * Change this if you are not using the standard port for your cache server.
+ *
+ * The standard port for Memcache & APCCache is 11211. For Redis it is 6379.
  */
 if (!defined('CIVICRM_DB_CACHE_PORT')) {
   define('CIVICRM_DB_CACHE_PORT', 11211 );
 }
 
 /**
- * Change this if your cache server requires a password (currently only works 
+ * Change this if your cache server requires a password (currently only works
  * with Redis)
  */
 if (!defined('CIVICRM_DB_CACHE_PASSWORD')) {