KO
|
EN
gitlite — search
Search
#php
#java
#javascript
#ruby
#c-plus-plus
#python
#r
#docker
#android
#rails
#c-sharp
#arduino
db-redis
★ 17
Open GitHub ↗
Yii DBAL Redis connection
Download README (.md)
Explore Similar Repositories
yii-auth-client
:
Yii Framework external authentication via OAuth and OpenID Extension
requirements
:
Requirements checker
db-elasticsearch
:
Yii Framework Elasticsearch Query and ActiveRecord
yii-debug-viewer
:
Debugger frontend
db-mongodb
:
Yii Framework MongoDB extension
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
db-redis
?
Download (.md)
> [!WARNING] > There is no official Redis support planned for Yii3 DB. Use [predis](https://github.com/predis/predis) or [phpredis](https://github.com/phpredis/phpredis) instead. <p align="center"> <a href="https://github.com/yiisoft" target="_blank"> <img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="80px" alt="Yii"> </a> <a href="https://redis.io/" target="_blank"> <img src="https://download.redis.io/redis.png" height="80px" alt="Redis"> </a> <h1 align="center">Yii DBAL Redis connection</h1> <br> </p> [](https://packagist.org/packages/yiisoft/db-redis) [](https://packagist.org/packages/yiisoft/db-redis) [](https://scrutinizer-ci.com/g/yiisoft/db-redis/?branch=master) [](https://scrutinizer-ci.com/g/yiisoft/db-redis/?branch=master) This extension provides the [redis](https://redis.io/) connection support for the [Yii framework](https://www.yiiframework.com). It includes a `Cache` and `Session` storage handler and implements the `ActiveRecord` pattern that allows you to store active records in redis. ## Support version | PHP | Redis Version | CI-Actions | |-----|---------------|------------| |**7.4 - 8.0**| **4 - 6**|[](https://github.com/yiisoft/db-redis/actions?query=workflow%3Abuild) [](https://dashboard.stryker-mutator.io/reports/github.com/yiisoft/db-redis/master) [](https://github.com/yiisoft/db-redis/actions?query=workflow%3A%22static+analysis%22) [](https://shepherd.dev/github/yiisoft/db-redis) ## Requirements - Redis version 2.6.12 or higher. - `Filter` PHP extension. ## Installation The package could be installed with [Composer](https://getcomposer.org): ```shell composer require yiisoft/db-redis ``` ## General usage Using `yiisoft/composer-config-plugin` automatically get the settings of `EventDispatcherInterface::class` and `LoggerInterface::class`. Di-Container: ```php use Yiisoft\Db\Redis\Connection as RedisConnection; return [ RedisConnection::class => [ '__class' => RedisConnection::class, 'host()' => [$params['yiisoft/db-redis']['dsn']['host']], 'port()' => [$params['yiisoft/db-redis']['dsn']['port']], 'database()' => [$params['yiisoft/db-redis']['dsn']['database']], 'password()' => [$params['yiisoft/db-redis']['password']] ] ]; ``` Params.php ```php return [ 'yiisoft/db-redis' => [ 'dsn' => [ 'driver' => 'redis', 'host' => '127.0.0.1', 'database' => 0, 'port' => 6379 ], 'password' => null, ] ]; ``` ## Configuring application To use this extension, you have to configure the `Yiisoft\Db\Redis\Connection|Connection` class in your application configuration: ```php return [ //.... 'components' => [ 'redis' => [ 'class' => 'Yiisoft\Db\Redis\Connection', 'hostname' => 'localhost', 'port' => 6379, 'database' => 0, ], ] ]; ``` This provides the basic access to redis storage via the `redis` application component: ```php Yii::$app->redis->set('mykey', 'some value'); echo Yii::$app->redis->get('mykey'); ``` See [Yiisoft\Db\Redis\Connection] for a full list of available methods. ## Documentation - Guide: [English](docs/guide/en/README.md), [日本語](docs/guide/ja/README.md), [Português - Brasil](docs/guide/pt-BR/README.md), [Русский](docs/guide/ru/README.md), [中国人](docs/guide/zh-CN/README.md) - [Internals](docs/internals.md) If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for that. You may also check out other [Yii Community Resources](https://www.yiiframework.com/community). ## License The Yii DBAL Redis connection is free software. It is released under the terms of the BSD License. Please see [`LICENSE`](./LICENSE.md) for more information. Maintained by [Yii Software](https://www.yiiframework.com/). ## Support the project [](https://opencollective.com/yiisoft) ## Follow updates [](https://www.yiiframework.com/) [](https://twitter.com/yiiframework) [](https://t.me/yii3en) [](https://www.facebook.com/groups/yiitalk) [](https://yiiframework.com/go/slack)