|
|
Storage capabilities describes how a storage adapter works and which features it supports.
To get capabilities of a storage adapter, you can use the method getCapabilities() of the storage adapter but only the storage adapter and its plugins have permissions to change them.
Because capabilities are mutable, for example, by changing some options, you can subscribe to the "change" event to get notifications; see the examples for details.
If you are writing your own plugin or adapter, you can also change capabilities because
you have access to the marker object and can create your own marker to instantiate a new
object of Zend\Cache\Storage\Capabilities.
Returns void
Returns if the dependency of Zend\EventManager is available.
Returns boolean
Get the event manager
Returns Zend\EventManager\EventCollection instance.
Get supported datatypes.
Returns array.
Set supported datatypes.
Implements a fluent interface.
Get supported metadata.
Returns array.
Set supported metadata
Implements a fluent interface.
Get maximum supported time-to-live
Returns int
Set maximum supported time-to-live
Implements a fluent interface.
Is the time-to-live handled static (on write), or dynamic (on read).
Returns boolean
Set if the time-to-live is handled statically (on write) or dynamically (on read)
Implements a fluent interface.
Get time-to-live precision.
Returns float.
Set time-to-live precision.
Implements a fluent interface.
Get the "use request time" flag status
Returns boolean
Set the "use request time" flag.
Implements a fluent interface.
Get flag indicating if expired items are readable.
Returns boolean
Set if expired items are readable.
Implements a fluent interface.
Get maximum key lenth.
Returns int
Set maximum key lenth.
Implements a fluent interface.
Get if namespace support is implemented as a key prefix.
Returns boolean
Set if namespace support is implemented as a key prefix.
Implements a fluent interface.
Get namespace separator if namespace is implemented as a key prefix.
Returns string
Set the namespace separator if namespace is implemented as a key prefix.
Implements a fluent interface.
Get if items are iterable.
Returns boolean
Set if items are iterable.
Implements a fluent interface.
Get flag indicating support to clear items of all namespaces.
Returns boolean
Set flag indicating support to clear items of all namespaces.
Implements a fluent interface.
Get flag indicating support to clear items by namespace.
Returns boolean
Set flag indicating support to clear items by namespace.
Implements a fluent interface.
Example #1 Get storage capabilities and do specific stuff in base of it
use Zend\Cache\StorageFactory;
$cache = StorageFactory::adapterFactory('filesystem');
$capabilities = $cache->getCapabilities();
// now you can run specific stuff in base of supported feature
if ($capabilities->getIterable()) {
$cache->find();
while ( ($item => $cache->fetch()) ) {
echo $item['key'] . ': ' . $item['value'] . "\n";
}
} else {
echo 'Iterating cached items not supported.';
}
Example #2 Listen to change event
use Zend\Cache\StorageFactory;
$cache = StorageFactory::adapterFactory('filesystem', array(
'no_atime' => false,
));
$capabilities = $cache->getCapabilities();
// Catching the change event
$capabilities->events()->attach('change', function() {
echo 'Capabilities changed';
});
// change option which changes capabilities
$cache->getOptions()->setNoATime(true);
/*
* Will output:
* "Capabilities changed"
*/
|
|
Copyright © 2005-2011 Zend Technologies Inc (compiled by mikaelkael with ZFDocumentor - GIT c517eb0).

