571 | | The use of memcache by Drupal is configured in /web/transitionnetwork.org/www/sites/default/settings.php: |
572 | | |
573 | | {{{ |
574 | | $conf['cache_inc'] = './sites/all/modules/cacherouter/cacherouter.inc'; |
575 | | $conf['cacherouter'] = array( |
576 | | 'default' => array( |
577 | | 'engine' => 'memcache', |
578 | | 'server' => array('127.0.0.1:11211'), |
579 | | 'shared' => TRUE, |
580 | | ), |
| 571 | The use of memcache by Drupal is provided by the [drupal.org/project/memcache|Memcache API and Integration module] and configured in /web/transitionnetwork.org/www/sites/default/settings.php: |
| 572 | |
| 573 | {{{ |
| 574 | # JK - issue #300 (memcache large dataset issues) trying memcache instraed of cacherouter |
| 575 | $conf = array( |
| 576 | 'cache_inc' => './sites/all/modules/memcache/memcache.inc', |
| 577 | 'memcache_servers' => array('127.0.0.1:11211' => 'default'), |
| 578 | 'memcache_bins' => array( |
| 579 | 'cache' => 'default', |
| 580 | 'cache_content' => 'database', |
| 581 | 'cache_form' => 'database', |
| 582 | 'cache_views' => 'database' |
| 583 | ), |