Directive | Type | Modification Scope | Description |
---|---|---|---|
zend_pagecache.enable | boolean | PHP_INI_SYSTEM | Enables the Zend Page Cache extension |
zend_pagecache.save_path | string | PHP_INI_SYSTEM | Location where the cache files are saved. This must point to an existing location. |
zend_pagecache.dir_depth | integer | PHP_INI_SYSTEM | Depth of directory tree in which cached files are stored |
zend_pagecache.log_verbosity_level | integer | PHP_INI_SYSTEM | The log verbosity level [0-5] |
zend_pagecache.dependencies_file | string | PHP_INI_SYSTEM |
|
zend_pagecache.compression_enable | boolean | PHP_INI_SYSTEM | Enables file compression of cached output |
zend_pagecache.clean_frequency | integer | PHP_INI_SYSTEM | How often expired entries are removed from the cache. The cleaning frequency is configured in seconds |
zend_pagecache.log_rotation_size | integer | PHP_INI_ALL | The maximum size of the log file before it is rotated |
Enables the Zend Page Cache extension
Type: boolean
Default Value: 1
Available since version 4.0
Location where the cache files are saved. This must point to an existing location.
Type: string
Default Value: pagecache
Available since version 4.0
Depth of directory tree in which cached files are stored
Type: integer
Default Value: 2
Available since version 4.0
The extension's log verbosity level. Level 1 includes very important information messages, errors and warnings. Level 2 displays notices. Greater levels (up to 5) are reserved for debug purposes
Type: integer
Default Value: 2
Available since version 4.0
The location of the configuration file in which caching rules are stored
Type: string
Default Value: pagecache_rules.xml
Available since version 4.0
Enables file compression of cached output. Applicable only on cached outputs larger than 1k.
Type: boolean
Default Value: 1
Available since version 4.0