Changes between Version 34 and Version 35 of NewLiveServer


Ignore:
Timestamp:
10/28/10 11:21:50 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewLiveServer

    v34 v35  
    149149}}} 
    150150 
     151The use of memcache by Drupal is configured in /web/transitionnetwork.org/www/sites/default/settings.php: 
     152 
     153{{{ 
     154$conf['cache_inc'] = './sites/all/modules/cacherouter/cacherouter.inc'; 
     155$conf['cacherouter'] = array( 
     156        'default' => array( 
     157        'engine'  => 'memcache', 
     158        'server'  => array('127.0.0.1:11211'), 
     159        'shared'  => TRUE, 
     160), 
     161); 
     162}}} 
     163 
    151164It's not clear if there is any gain from using memcache with one server, see this thread: http://groups.drupal.org/node/73513 
    152165