Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 304 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 304 Bytes

Phalcon\Mvc\Model\MetaData

Usage examples of the adapters available here:

Wincache

This adapter uses a Wincache backend to store the cached content:

$di->set('modelsMetadata', function () {
    return new \Phalcon\Mvc\Model\MetaData\Wincache([
        'lifetime' => 8600,
    ]);
});