Phalcon\Mvc\Model\MetaData\Wincache::getCacheBackend PHP Method

getCacheBackend() protected method

protected getCacheBackend ( ) : Wincache
return Phalcon\Cache\Backend\Wincache
    protected function getCacheBackend()
    {
        if (null === $this->wincache) {
            $this->wincache = new CacheBackend(new CacheFrontend(['lifetime' => $this->options['lifetime']]), []);
        }
        return $this->wincache;
    }