Yii2-Redis使用小记 - Cache

前些天简单学习了下 Redis,现在准备在项目上使用它了。我们目前用的是 Yii2 框架,在官网搜索了下 Redis,就发现了yii2-redis这扩展。

安装后使用超简单,打开 common/config/main.php 文件,修改如下。

‘cache‘ => [
    // ‘class‘ => ‘yii\caching\FileCache‘,
    ‘class‘ => ‘yii\redis\Cache‘,
],
‘redis‘ => [
    ‘class‘ => ‘yii\redis\Connection‘,
    ‘hostname‘ => ‘localhost‘,
    ‘port‘ => 6379,
    ‘database‘ => 0,
],

OK,现在已经用 redis 接管了yii的缓存,缓存的使用和以前一样,以前怎么用现在还是怎么用,但是有个不算bug的bug,所以算小坑,等会会说。

来测试下 cache 先,

Yii::$app->cache->set(‘test‘, ‘hehe..‘);
echo Yii::$app->cache->get(‘test‘), "\n";

Yii::$app->cache->set(‘test1‘, ‘haha..‘, 5);
echo ‘1 ‘, Yii::$app->cache->get(‘test1‘), "\n";
sleep(6);
echo ‘2 ‘, Yii::$app->cache->get(‘test1‘), "\n";

来看下测试结果。

和原来一样的用法,没问题。。

但是刚才我说过了有个不算bug的bug,所以算小坑,到底是什么东西呢?
如果你直接用 redis 接管了 cache,如果正常使用是完全没问题的,但是当 过期时间 的值超过 int 范围的时候,redis就会报错。
我使用了 yii2-admin,凑巧让我踩到坑了,因为他把缓存了30天,也就是2592000秒,并且 redis 缓存时间精度默认用毫秒,所以时间就是 2592000000 毫秒。
而 redis 的过期时间只能是int类型,Cache.php 里的 php 强制转为int,而没有做其他处理,所以就会变成 -1702967296 然后就报错了。

但是直接在 redis 命令行下不会负数,如图。

不过没关系,修复起来也很简单,我们修改为秒即可。
打开 vendor/yiisoft/yii2-redis/Cache.php 第 133 行,修改为如下代码。

protected function setValue($key, $value, $expire)
{
    if ($expire == 0) {
        return (bool) $this->redis->executeCommand(‘SET‘, [$key, $value]);
    } else {
        // $expire = (int) ($expire * 1000); // 单位默认为毫秒
        // return (bool) $this->redis->executeCommand(‘SET‘, [$key, $value, ‘PX‘, $expire]);

        $expire = +$expire > 0 ? $expire : 0; // 防止负数
        return (bool) $this->redis->executeCommand(‘SET‘, [$key, $value, ‘EX‘, $expire]); // 按秒缓存
    }
}

这样就OK了。

好了,今天分享这些,明后天会说下 yii2-redis 的 Connection 和 ActiveRecord 以及小坑。

时间: 2024-10-22 12:48:12

Yii2-Redis使用小记 - Cache的相关文章

Yii2 redis与cache

原文地址:http://www.myexception.cn/php/1974979.html composer require yiisoft/yii2-redis 安装后使用超简单,打开 common/config/main.php 文件,修改如下. 'cache' => [ // 'class' => 'yii\caching\FileCache', 'class' => 'yii\redis\Cache', ], 'redis' => [ 'class' => 'yi

spring boot redis 缓存(cache)集成

Spring Boot 集成教程 Spring Boot 介绍 Spring Boot 开发环境搭建(Eclipse) Spring Boot Hello World (restful接口)例子 spring boot 连接Mysql spring boot配置druid连接池连接mysql spring boot集成mybatis(1) spring boot集成mybatis(2) – 使用pagehelper实现分页 spring boot集成mybatis(3) – mybatis ge

yii2 redis使用

$redis = Yii::$app->redis;$keys = 'dll_mb_examine';//定义键名$list = $redis->get($keys);//取key值if(empty($list)){    $data=Examine::getMobileExamine($userInfo['userId']);    if(empty($data)){        return $this->redirect(['/frontend/default/nomsg','m

ssm+redis整合(通过cache方式)

这几天的研究ssm redis 终于进入主题了,今天参考了网上一些文章搭建了一下ssm+redis整合,特别记录下来以便以后可以查询使用,有什么不足请大牛们提点 项目架构 1.pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:/

redis相关小记

1,安装: wget && tar zxvf && make make命令执行完成后,会在当前目录下生成本个可执行文件,分别是redis-server.redis-cli.redis-benchmark.redis-stat,它们的作用如下: redis-server:Redis服务器的daemon启动程序 redis-cli:Redis命令行操作工具.当然,你也可以用telnet根据其纯文本协议来操作 redis-benchmark:Redis性能测试工具,测试Redis

Redis 学习小记

由于是学习笔记,我就不来各种啰嗦,介绍这个介绍那个,也不上交给国家,或者各种对比,相信如果你真心用 redis 的话,就不会去跟 MySql,Memcached,MongoDB 等做对比了. 我原先用的是 Memcached,但是项目需求,缓存的业务也不一样了,所以打算换 Redis.虽然 Memcached 也能实现,但是技多不压身嘛,所以就有了这笔记. 第一步当然是找官网,找中文资料啦,然后就有了这三个网站.Redis 官网http://redis.io/Redis 命令参考 (中文)htt

Yii2 redis 使用

首先要安装一下redis的扩展 composer require yiisoft/yii2-redis 在配置文件中添加redis配置 'components' => [ .... 'redis' => [ 'class' => 'yii\redis\Connection', 'hostname' => yourname, 'password' => yourPassword, 'port' =>6379,//默认的端口 配置其他端口在这里改 'database' =&

[中英对照]Why Redis beats Memcached for caching | 在cache化方面,为何Redis胜过Memcached?

对Memcached和Redis有兴趣的同学不妨花几分钟读一读本文,否则请飘过. Why Redis beats Memcached for caching | 在cache化方面,为何Redis胜过Memcached? Memcached is sometimes more efficient, but Redis is almost always the better choice. XXX Memcached or Redis? It's a question that nearly al

redis实现cache系统实践(六)

1. 介绍 rails中就自带有cache功能,不过它默认是用文件来存储数据的.我们要改为使用redis来存储.而且我们也需要把sessions也存放到redis中.关于rails实现cache功能的源码可见于这几处: https://github.com/rails/rails/blob/master/activesupport/lib/active_support/cache.rb https://github.com/rails/rails/tree/master/activesuppor