The demo code on the main project page says
$conf['cache_backends'] = array('sites/all/modules/varnish/varnish.cache.inc');
Problem is if you're trying to run Memcached and Varnish on the site, and you happen to have the Varnish caching code put in after the Memcached code, the Varnish code overwrites the $conf['cache_backends'] array.
Demo code should read:
$cont['cache_backends'][] = 'sites/all/modules/varnish/varnish.cache.inc'; Thx much for your work!
Comments