Is memcache impacting my performence negatively?

Posted by iTech on Server Fault See other posts from Server Fault or by iTech
Published on 2012-11-04T04:07:32Z Indexed on 2012/11/04 5:05 UTC
Read the original article Hit count: 241

Filed under:
|
|
|
|

I am using pressflow 6 and NewRelic seems to suggest that memcache is infact hurting performance as shown below :

DB Vs Memcache Load

My settings.php file :

# Varnish reverse proxy on localhost
$conf['reverse_proxy'] = TRUE;           
$conf['reverse_proxy_addresses'] = array('127.0.0.1'); 

# Memcached configuration
$conf['cache_inc'] = './sites/all/modules/memcache/memcache.inc';
$conf['memcache_servers'] = array(
         '127.0.0.1:11211' => 'default',
         );
### END Mercury settings written on 2011-11-01T07:12:49-04:00

© Server Fault or respective owner

Related posts about database

Related posts about centos5