Cache/Backend/File.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Cache  
Subpackage
Zend_Cache_Backend  
Version
$Id$  

\Zend_Cache_Backend_File

Package: Zend_Cache\Zend_Cache_Backend
Implements
Parent(s)
\Zend_Cache_Backend
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedarray $_metadatasArray = array()
Array of metadatas (each item is an associative array)
Default valuearray()Details
Type
array
>VPropertyprotectedarray $_options = array('cache_dir' => null, 'file_locking' => true, 'read_control' => true, 'read_control_type' => 'crc32', 'hashed_directory_level' => 0, 'hashed_directory_perm' => 448, 'file_name_prefix' => 'zend_cache', 'cache_file_perm' => 384, 'metadatas_array_max_size' => 100)
Available options
=====> (string) cache_dir : - Directory where to put the cache files =====> (boolean) file_locking : - Enable / disable file_locking - Can avoid cache corruption under bad circumstances but it doesn't work on multithread webservers and on NFS filesystems for example =====> (boolean) read_control : - Enable / disable read control - If enabled, a control key is embeded in cache file and this key is compared with the one calculated after the reading. =====> (string) read_control_type : - Type of read control (only if read control is enabled). Available values are : 'md5' for a md5 hash control (best but slowest) 'crc32' for a crc32 hash control (lightly less safe but faster, better choice) 'adler32' for an adler32 hash control (excellent choice too, faster than crc32) 'strlen' for a length only test (fastest) =====> (int) hashed_directory_level : - Hashed directory level - Set the hashed directory structure level. 0 means "no hashed directory structure", 1 means "one level of directory", 2 means "two levels"... This option can speed up the cache only when you have many thousands of cache file. Only specific benchs can help you to choose the perfect value for you. Maybe, 1 or 2 is a good start. =====> (int) hashed_directory_umask : - deprecated - Permissions for hashed directory structure =====> (int) hashed_directory_perm : - Permissions for hashed directory structure =====> (string) file_name_prefix : - prefix for cache files - be really carefull with this option because a too generic value in a system cache dir (like /tmp) can cause disasters when cleaning the cache =====> (int) cache_file_umask : - deprecated - Permissions for cache files =====> (int) cache_file_perm : - Permissions for cache files =====> (int) metatadatas_array_max_size : - max size for the metadatas array (don't change this value unless you know what you are doing)
Default valuearray('cache_dir' => null, 'file_locking' => true, 'read_control' => true, 'read_control_type' => 'crc32', 'hashed_directory_level' => 0, 'hashed_directory_perm' => 448, 'file_name_prefix' => 'zend_cache', 'cache_file_perm' => 384, 'metadatas_array_max_size' => 100)Details
Type
array

Methods

methodpublic___expire(string $id) : void

PUBLIC METHOD FOR UNIT TESTING ONLY !

Force a cache record to expire
Parameters
NameTypeDescription
$idstring

cache id

methodpublic__construct(array $options = array()) : void

Constructor

Parameters
NameTypeDescription
$optionsarray

associative array of options

Throws
ExceptionDescription
\Zend_Cache_Exception
methodprotected_clean(string $dir, string $mode = \Zend_Cache::CLEANING_MODE_ALL, array $tags = array()) : boolean

Clean some cache records (protected method used for recursive stuff)

Available modes are : Zend_Cache::CLEANING_MODE_ALL (default) => remove all cache entries ($tags is not used) Zend_Cache::CLEANING_MODE_OLD => remove too old cache entries ($tags is not used) Zend_Cache::CLEANING_MODE_MATCHING_TAG => remove cache entries matching all given tags ($tags can be an array of strings or a single string) Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG => remove cache entries not {matching one of the given tags} ($tags can be an array of strings or a single string) Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG => remove cache entries matching any given tags ($tags can be an array of strings or a single string)
Parameters
NameTypeDescription
$dirstring

Directory to clean

$modestring

Clean mode

$tagsarray

Array of tags

Returns
TypeDescription
booleanTrue if no problem
Throws
ExceptionDescription
\Zend_Cache_Exception
methodprotected_cleanMetadatas() : void

Clear the metadatas array

methodprotected_delMetadatas(string $id) : boolean

Drop a metadata record

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
booleanTrue if no problem
methodprotected_expireTime( $lifetime) : int

Compute & return the expire time

Parameters
NameTypeDescription
$lifetime
Returns
TypeDescription
intexpire time (unix timestamp)
methodprotected_file(string $id) : string

Make and return a file name (with path)

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
stringFile name (with path)
methodprotected_fileGetContents(string $file) : string

Return the file content of the given file

Parameters
NameTypeDescription
$filestring

File complete path

Returns
TypeDescription
stringFile content (or false if problem)
methodprotected_fileNameToId(string $fileName) : string

Transform a file name into cache id and return it

Parameters
NameTypeDescription
$fileNamestring

File name

Returns
TypeDescription
stringCache id
methodprotected_filePutContents(string $file, string $string) : boolean

Put the given string into the given file

Parameters
NameTypeDescription
$filestring

File complete path

$stringstring

String to put in file

Returns
TypeDescription
booleantrue if no problem
methodprotected_get( $dir,  $mode,  $tags = array()) : void

Parameters
NameTypeDescription
$dir
$mode
$tags
methodprotected_getMetadatas(string $id) : array | false

Get a metadatas record

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
array | falseAssociative array of metadatas
methodprotected_hash(string $data, string $controlType) : string

Make a control key with the string containing datas

Parameters
NameTypeDescription
$datastring

Data

$controlTypestring

Type of control 'md5', 'crc32' or 'strlen'

Returns
TypeDescription
stringControl key
Throws
ExceptionDescription
\Zend_Cache_Exception
methodprotected_idToFileName(string $id) : string

Transform a cache id into a file name and return it

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
stringFile name
methodprotected_isMetadatasFile(string $fileName) : boolean

Check if the given filename is a metadatas one

Parameters
NameTypeDescription
$fileNamestring

File name

Returns
TypeDescription
booleanTrue if it's a metadatas one
methodprotected_loadMetadatas(string $id) : array | false

Load metadatas from disk

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
array | falseMetadatas associative array
methodprotected_metadatasFile(string $id) : string

Make and return a file name (with path) for metadatas

Parameters
NameTypeDescription
$idstring

Cache id

Returns
TypeDescription
stringMetadatas file name (with path)
methodprotected_path(string $id, boolean $parts = false) : string

Return the complete directory path of a filename (including hashedDirectoryStructure)

Parameters
NameTypeDescription
$idstring

Cache id

$partsboolean

if true, returns array of directory parts instead of single string

Returns
TypeDescription
stringComplete directory path
methodprotected_recursiveMkdirAndChmod(string $id) : boolean

Make the directory strucuture for the given id

Parameters
NameTypeDescription
$idstring

cache id

Returns
TypeDescription
booleantrue
methodprotected_remove(string $file) : boolean

Remove a file

If we can't remove the file (because of locks or any problem), we will touch the file to invalidate it
Parameters
NameTypeDescription
$filestring

Complete file path

Returns
TypeDescription
booleanTrue if ok
methodprotected_saveMetadatas(string $id, array $metadatas) : boolean

Save metadatas to disk

Parameters
NameTypeDescription
$idstring

Cache id

$metadatasarray

Associative array

Returns
TypeDescription
booleanTrue if no problem
methodprotected_setMetadatas(string $id, array $metadatas, boolean $save = true) : boolean

Set a metadatas record

Parameters
NameTypeDescription
$idstring

Cache id

$metadatasarray

Associative array of metadatas

$saveboolean

optional pass false to disable saving to file

Returns
TypeDescription
booleanTrue if no problem
methodprotected_test(string $id, boolean $doNotTestCacheValidity) : boolean | mixed

Test if the given cache id is available (and still valid as a cache record)

Parameters
NameTypeDescription
$idstring

Cache id

$doNotTestCacheValidityboolean

If set to true, the cache validity won't be tested

Returns
TypeDescription
boolean | mixedfalse (a cache is not available) or "last modified" timestamp (int) of the available cache record
methodpublicclean(string $mode = \Zend_Cache::CLEANING_MODE_ALL,  $tags = array()) : boolean

Clean some cache records

Available modes are : Zend_Cache::CLEANING_MODE_ALL (default) => remove all cache entries ($tags is not used) Zend_Cache::CLEANING_MODE_OLD => remove too old cache entries ($tags is not used) Zend_Cache::CLEANING_MODE_MATCHING_TAG => remove cache entries matching all given tags ($tags can be an array of strings or a single string) Zend_Cache::CLEANING_MODE_NOT_MATCHING_TAG => remove cache entries not {matching one of the given tags} ($tags can be an array of strings or a single string) Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG => remove cache entries matching any given tags ($tags can be an array of strings or a single string)
Parameters
NameTypeDescription
$modestring

clean mode

$tags
Returns
TypeDescription
booleantrue if no problem
methodpublicgetCapabilities() : array

Return an associative array of capabilities (booleans) of the backend

The array must include these keys : - automatic_cleaning (is automating cleaning necessary) - tags (are tags supported) - expired_read (is it possible to read expired cache records (for doNotTestCacheValidity option for example)) - priority does the backend deal with priority when saving - infinite_lifetime (is infinite lifetime can work with this backend) - get_list (is it possible to get the list of cache ids and the complete list of tags)
Returns
TypeDescription
arrayassociative of with capabilities
methodpublicgetFillingPercentage() : int

Return the filling percentage of the backend storage

Returns
TypeDescription
intinteger between 0 and 100
Throws
ExceptionDescription
\Zend_Cache_Exception
methodpublicgetIds() : array

Return an array of stored cache ids

Returns
TypeDescription
arrayarray of stored cache ids (string)
methodpublicgetIdsMatchingAnyTags(array $tags = array()) : array

Return an array of stored cache ids which match any given tags

In case of multiple tags, a logical AND is made between tags
Parameters
NameTypeDescription
$tagsarray

array of tags

Returns
TypeDescription
arrayarray of any matching cache ids (string)
methodpublicgetIdsMatchingTags(array $tags = array()) : array

Return an array of stored cache ids which match given tags

In case of multiple tags, a logical AND is made between tags
Parameters
NameTypeDescription
$tagsarray

array of tags

Returns
TypeDescription
arrayarray of matching cache ids (string)
methodpublicgetIdsNotMatchingTags(array $tags = array()) : array

Return an array of stored cache ids which don't match given tags

In case of multiple tags, a logical OR is made between tags
Parameters
NameTypeDescription
$tagsarray

array of tags

Returns
TypeDescription
arrayarray of not matching cache ids (string)
methodpublicgetMetadatas(string $id) : array

Return an array of metadatas for the given cache id

The array must include these keys : - expire : the expire timestamp - tags : a string array of tags - mtime : timestamp of last modification time
Parameters
NameTypeDescription
$idstring

cache id

Returns
TypeDescription
arrayarray of metadatas (false if the cache id is not found)
methodpublicgetTags() : array

Return an array of stored tags

Returns
TypeDescription
arrayarray of stored tags (string)
methodpublicload(string $id, boolean $doNotTestCacheValidity = false) : string | false

Test if a cache is available for the given id and (if yes) return it (false else)

Parameters
NameTypeDescription
$idstring

cache id

$doNotTestCacheValidityboolean

if set to true, the cache validity won't be tested

Returns
TypeDescription
string | falsecached datas
methodpublicremove(string $id) : boolean

Remove a cache record

Parameters
NameTypeDescription
$idstring

cache id

Returns
TypeDescription
booleantrue if no problem
methodpublicsave(string $data, string $id, array $tags = array(), int $specificLifetime = false) : boolean

Save some string datas into a cache record

Note : $data is always "string" (serialization is done by the core not by the backend)
Parameters
NameTypeDescription
$datastring

Datas to cache

$idstring

Cache id

$tagsarray

Array of strings, the cache record will be tagged by each string entry

$specificLifetimeint

If != false, set a specific lifetime for this cache record (null => infinite lifetime)

Returns
TypeDescription
booleantrue if no problem
methodpublicsetCacheDir(string $value, boolean $trailingSeparator = true) : void

Set the cache_dir (particular case of setOption() method)

Parameters
NameTypeDescription
$valuestring
$trailingSeparatorboolean

If true, add a trailing separator is necessary

Throws
ExceptionDescription
\Zend_Cache_Exception
methodpublictest(string $id) : mixed

Test if a cache is available or not (for the given id)

Parameters
NameTypeDescription
$idstring

cache id

Returns
TypeDescription
mixedfalse (a cache is not available) or "last modified" timestamp (int) of the available cache record
methodpublictouch(string $id, int $extraLifetime) : boolean

Give (if possible) an extra lifetime to the given cache id

Parameters
NameTypeDescription
$idstring

cache id

$extraLifetimeint
Returns
TypeDescription
booleantrue if ok
Documentation was generated by phpDocumentor 2.2.0 .