\Zend\Server\Cache: cache server definitions

 Methods

Remove a cache file

delete(string $filename) : bool

Parameters

$filename

string

Returns

bool

Load server definition from a file

get(string $filename, \Zend\Server\Server $server) : bool

Unserializes a stored server definition from $filename. Returns false if it fails in any way, true on success.

Useful to prevent needing to build the server definition on each request. Sample usage:

if (!Zend\Server\Cache::get($filename, $server)) {
    require_once 'Some/Service/ServiceClass.php';
    require_once 'Another/Service/ServiceClass.php';

    // Attach Some\Service\ServiceClass with namespace 'some'
    $server->attach('Some\Service\ServiceClass', 'some');

    // Attach Another\Service\ServiceClass with namespace 'another'
    $server->attach('Another\Service\ServiceClass', 'another');

    Zend\Server\Cache::save($filename, $server);
}

$response = $server->handle();
echo $response;

Parameters

$filename

string

Returns

bool

Cache a file containing the dispatch list.

save(string $filename, \Zend\Server\Server $server) : bool

Serializes the server definition stores the information in $filename.

Returns false on any error (typically, inability to write to file), true on success.

Parameters

$filename

string

Returns

bool

 Properties

 

<p>Methods to skip when caching server</p>

$skipMethods : array