PHP code example of iwai / phalcon-model-metadata-redis-adapter

1. Go to this page and download the library: Download iwai/phalcon-model-metadata-redis-adapter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

iwai / phalcon-model-metadata-redis-adapter example snippets



use Phalcon\Mvc\Application;
use Iwai\Phalcon\Mvc\Model\MetaData\Redis as MetaDataRedis;

$app = new Application();

$app->getDI()->setShared('modelsMetadata', function () {
    return new MetaDataRedis([
        'host' => '127.0.0.1',
        'port' => 6379,
    ]);
});