yii2-redis 扩展详解

简介

yii2-redis 扩展为 Yii2 框架提供了 redis 键值存储支持。包括缓存(Cache)、会话存储处理(Session),并实现了 ActiveRecord 模式,允许您将活动记录存储在 redis 中。

相关链接

安装扩展

在 Yii2 项目根目录,执行以下命令安装:

  1. $ composer require yiisoft/yii2-redis

也可以先在 composer.json 文件中声明如下依赖:

  1. "yiisoft/yii2-redis": "~2.0.0"

再执行下面命令安装:

  1. $ composer update

基本使用

继续阅读请确保已安装并开启了 redis 服务,安装请参考《Redis 安装》

1. 配置

在组件中添加如下配置:

  1. 'components' => [
  2. 'redis' => [
  3. 'class' => 'yii\redis\Connection',
  4. 'hostname' => 'localhost',
  5. 'port' => 6379,
  6. 'database' => 0,
  7. ],
  8. ]

2. 示例

下面代码演示了 redis 最基本的 string 类型的使用:

  1. // 获取 redis 组件
  2. $redis = Yii::$app->redis;
  3. // 判断 key 为 username 的是否有值,有则打印,没有则赋值
  4. $key = 'username';
  5. if ($val = $redis->get($key);) {
  6. var_dump($val);
  7. } else {
  8. $redis->set($key, 'marko');
  9. $redis->expire($key, 5);
  10. }

这个类中(yii\redis\Connection)提供了操作 redis 所有的数据类型和服务(String、Hash、List、Set、SortedSet、HyperLogLog、GEO、Pub/Sub、Transaction、Script、Connection、Server)所需要的方法,并且和 redis 中的方法同名,如果不清楚可以直接到该类中查看。

缓存组件

该扩展中的 yii\redis\Cache 实现了 Yii2 中的缓存相关接口,所以我们也可以用 redis 来存储缓存,且用法和原来一样。

1. 配置

修改组件中 cache 的 class 为 yii\redis\Cache 即可,配置如下:

  1. 'components' => [
  2. 'cache' => [
  3. // 'class' => 'yii\caching\FileCache',
  4. 'class' => 'yii\redis\Cache',
  5. ],
  6. ],

如果没有配置过 redis 组件,需要在 cache 组件下配置 redis 服务相关参数,完整配置如下:

  1. 'components' => [
  2. 'cache' => [
  3. // 'class' => 'yii\caching\FileCache',
  4. 'class' => 'yii\redis\Cache',
  5. 'redis' => [
  6. 'hostname' => 'localhost',
  7. 'port' => 6379,
  8. 'database' => 0,
  9. ],
  10. ],
  11. ],

2. 示例

下面代码演示了缓存的基本使用:

  1. // 获取 cache 组件
  2. $cache = Yii::$app->cache;
  3. // 判断 key 为 username 的缓存是否存在,有则打印,没有则赋值
  4. $key = 'username';
  5. if ($cache->exists($key)) {
  6. var_dump($cache->get($key));
  7. } else {
  8. $cache->set($key, 'marko', 60);
  9. }

使用文件缓存(FileCache)时,缓存是存储在 runtime/cache 目录下;使用 redis 缓存后,缓存将存储在 redis 数据库中,性能将大大提高。

会话组件

该扩展中的 yii\redis\Session 实现了 Yii2 中的会话相关接口,所以我们也可以用 redis 来存储会话信息,且用法和原来一样。

1. 配置

修改组件 session 的配置,指定 class 为 yii\redis\Session 即可,配置如下:

  1. 'components' => [
  2. 'session' => [
  3. 'name' => 'advanced-frontend',
  4. 'class' => 'yii\redis\Session'
  5. ],
  6. ],

如果没有配置过 redis 组件,需要在 session 组件下配置 redis 服务相关参数,完整配置如下:

  1. 'components' => [
  2. 'session' => [
  3. 'name' => 'advanced-frontend',
  4. 'class' => 'yii\redis\Session',
  5. 'redis' => [
  6. 'hostname' => 'localhost',
  7. 'port' => 6379,
  8. 'database' => 0,
  9. ],
  10. ],
  11. ],

2. 使用

在开发过程中,切记一定不要使用 PHP 原生的 $_SESSION 去操作,而要使用 Yii 提供的 session 组件,获取方式如下:

  1. $session = Yii::$app->session;

ActiveRecord

该扩展中的 yii\redis\ActiveRecord 实现了 Yii2 中的 ActiveRecord 相关接口,所以我们可以使用 AR 的方式操作 redis 数据库。关于如何使用 Yii 的 ActiveRecord,请阅读权威指南中有关 ActiveRecord 的基础文档。

定义 redis ActiveRecord 类,我们的模型需要继承 yii\redis\ActiveRecord,并至少实现 attributes() 方法来定义模型的属性。

主键可以通过 yii\redis\ActiveRecord::primaryKey() 定义,如果未指定,则默认为 id。 primaryKey 必须在 attributes() 方法定义的属性中,如果没有指定主键,请确保 id 在属性中。

下面定义一个 Customer 模型来演示:

  1. class Customer extends \yii\redis\ActiveRecord
  2. {
  3. /**
  4. * 主键 默认为 id
  5. *
  6. * @return array|string[]
  7. */
  8. public static function primaryKey()
  9. {
  10. return ['id'];
  11. }
  12. /**
  13. * 模型对应记录的属性列表
  14. *
  15. * @return array
  16. */
  17. public function attributes()
  18. {
  19. return ['id', 'name', 'age', 'phone', 'status', 'created_at', 'updated_at'];
  20. }
  21. /**
  22. * 定义和其它模型的关系
  23. *
  24. * @return \yii\db\ActiveQueryInterface
  25. */
  26. public function getOrders()
  27. {
  28. return $this->hasMany(Order::className(), ['customer_id' => 'id']);
  29. }
  30. }

使用示例:

  1. // 使用 AR 方式新增一条记录
  2. $customer = new Customer();
  3. $customer->name = 'marko';
  4. $customer->age = 18;
  5. $customer->phone = 13888888888;
  6. $customer->status = 1;
  7. $customer->save();
  8. echo $customer->id;
  9. // 使用 AR 查询
  10. $customer = Customer::findOne($customer->id);
  11. $customer = Customer::find()->where(['status' => 1])->all();

redis ActiveRecord 的一般用法与权威指南中数据库的 ActiveRecord 用法非常相似。它们支持相同的接口和方法,除了以下限制:

  • 由于 redis 不支持 sql,查询方法仅限于使用以下方法:where(),limit(),offset(),orderBy() 和 indexBy()。 【 orderBy() 尚未实现:#1305)】
  • 由于 redis 没有表的概念,因此不能通过表定义关联关系,只能通过其它记录来定义关系。

直接使用命令

直接使用 redis 连接,就可以使用 redis 提供的很多有用的命令。配置好 redis 后,用以下方式获取 redis 组件:

  1. $redis = Yii::$app->redis;

然后就可以执行命令了,最通用的方法是使用 executeCommand 方法:

  1. $result = $redis->executeCommand('hmset', ['test_collection', 'key1', 'val1', 'key2', 'val2']);

支持的每个命令都有一些快捷方式,可以按照如下方式使用:

  1. $result = $redis->hmset('test_collection', 'key1', 'val1', 'key2', 'val2');

有关可用命令及其参数的列表,请参阅 redis 命令: