Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

CacheThreshold

Summary

Sets the treshold for content cache cleanup

Usage

 

CacheTreshold= number

Description

The threshold for file cleanup, if it is exceeded a global expiry is used instead. The value is calculated with the number of affected nodes * viewmodes * translations * sitedesign.
Note: This is an internal change that you should not change unless you are a developer.

Frederik Holljen (04/05/2005 1:33 pm)

Frederik Holljen (04/05/2005 1:35 pm)


Comments

  • Value calculation changed from 3.8

    If you look at the value calculation function code, you will see that from 3.8 the value only equals to the number of affected nodes.

        function calculateCleanupValue( $nodeCount )
        {
            return $nodeCount;
        }