Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 360 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 360 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,
            ]
        );
    }
);