kernel/private/rest/classes/cache/cluster.php

Show: inherited
Table of Contents

File containing ezpRestCacheStorageCluster class

Copyright
Copyright (C) 1999-2011 eZ Systems AS. All rights reserved.  
License
eZ Business Use License Agreement Version 2.0  
Package
kernel  
Version
4.6.0  

\ezpRestCacheStorageCluster

Package: kernel

File containing ezpRestCacheStorageCluster class

Parent(s)
\ezpRestCacheStorageFile < \ezcCacheStorageFile
Children
\ezpRestCacheStorageClusterObject
Copyright
Copyright (C) 1999-2011 eZ Systems AS. All rights reserved.  
License
eZ Business Use License Agreement Version 2.0  
Version
4.6.0  

Properties

Propertyprotected\eZClusterFileHandlerInterface  $clusterCacheFile= ''

Cluster file handler instance for cache file

Propertypublicbool  $isCacheEnabled= 'true'

Flag indicating if cache is enabled or not.

This flag should be set by the cache caller. Default is true

Default valuetrueDetails
Type
bool

Methods

methodpublic__construct( string $location, \array(string=>string) $options = array() ) : void

Creates a new cache storage for a given location through eZ Publish cluster mechanism Options can contain the 'ttl' ( Time-To-Life ). This is per default set to 1 day.

Parameters
Name Type Description
$location string

Path to the cache location inside the cluster

$options \array(string=>string)

Options for the cache.

methodpublicabortCacheGeneration( ) : void

Aborts current cache generation Useful in case of a problem during generation of content (ie. exception)

Throws
Exception Description
\ezpCacheClusterException
methodpublicclusterRetrieve( string $file, int $mtime, array $args ) : string

Retrieve callback for cluster processCache() method

Parameters
Name Type Description
$file string

Filepath

$mtime int

File modification time

$args array

Extra args passed to the cluster processCache() method

Returns
Type Description
string
methodpubliccountDataItems( string $id = null, \array(string=>string) $attributes = array() ) : int

Return the number of items in the cache matching a certain criteria.

This method determines if cache data described by the given ID and/or attributes exists. It returns the number of cache data items found.

Parameters
Name Type Description
$id string

The item ID.

$attributes \array(string=>string)

Attributes that describe the item

Returns
Type Description
int The number of cache data items found matching the criteria
methodpublicdelete( string $id = null, \array(string=>string) $attributes = array(), bool $search = false ) : void

Delete data from the cache.

Purges the cached data for a given ID and or attributes. Using an ID purges only the cache data for just this ID.

Additional attributes provided will matched additionally. This can give you an immense speed improvement against just searching for ID ( see {@link ezcCacheStorage::restore()} ).

If you only provide attributes for deletion of cache data, all cache data matching these attributes will be purged.

Parameters
Name Type Description
$id string

The item ID.

$attributes \array(string=>string)

Attributes that describe the cached data.

$search bool

Whether to search for items if not found directly. Default is false.

methodpublicgetRemainingLifetime( string $id, \array(string=>string) $attributes = array() ) : int

Returns the time ( in seconds ) that remains for a cache object, before it gets outdated. In case the cache object is already outdated or does not exist, this method returns 0.

Parameters
Name Type Description
$id string

The item ID.

$attributes \array(string=>string)

Attributes that describe the

Returns
Type Description
int The remaining lifetime ( 0 if nonexists or outdated ).
Details
Access
public  
methodpublicrestore( string $id, \array(string=>string) $attributes = array(), bool $search = false ) : mixed

Restore data from the cache.

Restores the data associated with the given cache and returns it. Please see {@link ezcCacheStorage::store()} for more detailed information of cachable datatypes.

During access to cached data the caches are automatically expired. This means, that the ezcCacheStorage object checks before returning the data if it's still actual. If the cache has expired, data will be deleted and false is returned.

You should always provide the attributes you assigned, although the cache storages must be able to find a cache ID even without them. BEWARE: Finding cache data only by ID can be much slower than finding it by ID and attributes.

Parameters
Name Type Description
$id string

The item ID.

$attributes \array(string=>string)

Attributes that describe the cached data.

$search bool

Whether to search for items if not found directly. Default is false.

Returns
Type Description
mixed The cached data on success, otherwise false.
methodpublicstore(  $id,  $data,  $attributes = array() ) : void

(non-PHPdoc)

Parameters
Name Type Description
$id
$data
$attributes
Details
See
\lib/ezc/Cache/src/storage/ezcCacheStorageFile::store()  
Documentation was generated by DocBlox 0.18.1.