Redis

Redis, veritabanı gibi kullanılır, örneğin plugin/foo/config/redis.php

return [
    'default' => [
        'host' => '127.0.0.1',
        'password' => null,
        'port' => 6379,
        'database' => 0,
    ],
    'cache' => [
        'host' => '127.0.0.1',
        'password' => null,
        'port' => 6379,
        'database' => 1,
    ],
];

Kullanımı

use support\Redis;
Redis::connection('plugin.foo.default')->get('key');
Redis::connection('plugin.foo.cache')->get('key');

Aynı şekilde, ana projenin Redis yapılandırmasını yeniden kullanmak istiyorsanız

use support\Redis;
Redis::get('key');
// Varsayalım ki ana projede bir cache bağlantısı da yapılandırılmış olsun
Redis::connection('cache')->get('key');