kernel/private/rest/classes/cache/cluster.php
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
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


\eZClusterFileHandlerInterface
$clusterCacheFile= ''
Cluster file handler instance for cache file
Methods


__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.
Name | Type | Description |
---|---|---|
$location | string | Path to the cache location inside the cluster |
$options | \array(string=>string) | Options for the cache. |


abortCacheGeneration(
)
:
void
Aborts current cache generation Useful in case of a problem during generation of content (ie. exception)
Exception | Description |
---|---|
\ezpCacheClusterException |


clusterRetrieve(
string $file, int $mtime, array $args
)
:
string
Retrieve callback for cluster processCache() method
Name | Type | Description |
---|---|---|
$file | string | Filepath |
$mtime | int | File modification time |
$args | array | Extra args passed to the cluster processCache() method |
Type | Description |
---|---|
string |


countDataItems(
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.
Name | Type | Description |
---|---|---|
$id | string | The item ID. |
$attributes | \array(string=>string) | Attributes that describe the item |
Type | Description |
---|---|
int | The number of cache data items found matching the criteria |


delete(
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.
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. |


getRemainingLifetime(
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.
Name | Type | Description |
---|---|---|
$id | string | The item ID. |
$attributes | \array(string=>string) | Attributes that describe the |
Type | Description |
---|---|
int | The remaining lifetime ( 0 if nonexists or outdated ). |
- Access
- public


restore(
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.
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. |
Type | Description |
---|---|
mixed | The cached data on success, otherwise false. |