Hi,

I'm trying to enable File Cache fast page caching so that it doesn't access the database. But I can't understand the documentation. I have the following lines in my settings.php:

	$conf['cache_class_cache_page']   = 'DrupalDatabaseCache';
	$conf['filecache_fast_pagecache'] = TRUE;
	$conf['page_cache_without_database'] = TRUE;
	$conf['page_cache_invoke_hooks'] = FALSE;
	$conf['page_cache_maximum_age'] = $variables['page_cache_maximum_age'];
	$conf['cache_lifetime'] = $variables['cache_lifetime'];
	$conf['page_compression'] = $variables['page_compression'];

Will this get me what I want? Above all, I can't figure out what to put for "$conf['cache_class_cache_page']". I don't want to put it in memcache because I don't have much memory. So I enabled the regular Drupal 7 DB caching from the Cache Backport module (I'm on D6). But I imagine that this will make it use the DB for caching pages, which I am trying to avoid.

Any suggestions? Thanks a lot!

Comments

ogi’s picture

Issue summary: View changes
Status: Active » Closed (works as designed)

filecache_fast_pagecache is not yet implemented and it will be one of the last things that get implemented before final 1.0 release.