मैं एक Drupal 7 वेबसाइट का अनुकूलन कर रहा हूँ और मेरे पास वार्निश, मेम्चे और APC सभी स्थापित हैं और अपने व्यक्तिगत Drupal 7 मॉड्यूल के साथ काम कर रहे हैं। मेरी सेटिंग में $conf
। नीचे मेरे पास विकल्प हैं।
मेरा प्रश्न बेहतर प्रदर्शन प्राप्त करना है और इन सभी कैश को अच्छी तरह से एक साथ काम करना है, क्या मुझे अधिक कॉन्फ़िगरेशन विकल्प जोड़ने की आवश्यकता है?
मॉड्यूल रीडमी आमतौर पर एकल कैश सिस्टम मान लेता है। क्या 3 अलग कैशिंग बैकेंड को चलाने के लिए बेहतर प्रदर्शन प्राप्त करने के लिए किसी भी ट्विक की आवश्यकता है?
// Add Varnish as the page cache handler.
$conf['cache_backends'][] = 'sites/all/modules/varnish/varnish.cache.inc';
$conf['cache_class_cache_page'] = 'VarnishCache';
// Drupal 7 does not cache pages when we invoke hooks during bootstrap.
// This needs to be disabled.
$conf['page_cache_invoke_hooks'] = FALSE;
$conf['cache_backends'][] = 'sites/all/modules/apc/drupal_apc_cache.inc';
$conf['cache_class_cache'] = 'DrupalAPCCache';
$conf['cache_class_cache_bootstrap'] = 'DrupalAPCCache';
//$conf['apc_show_debug'] = TRUE; // Remove the slashes to use debug mode.
$conf['cache_backends'][] = 'sites/all/modules/memcache/memcache.inc';
$conf['cache_default_class'] = 'MemCacheDrupal';
$conf['cache_class_cache_form'] = 'DrupalDatabaseCache';