Any chance of implementing the hook to get the Memcache API to recognize the views cache?

function hook_views_caches() {
	return array('cache_views');
}

Comments

merlinofchaos’s picture

Status: Active » Closed (works as designed)

According to the memcache documentation, it's hook_devel_caches. But that's for D5; in D6, that was deprecated in favor of hook_flush_caches, which Views implements.

I did a quick scan through memcache's D6 code and I can't find any references to this, so as far as I know, everything is set up as it should be.