PHP之深入学习Yii2缓存Cache组件详细讲解(2)

/** * Removes expired cache files. * @param bool $force whether to enforce the garbage collection regardless of [[gcProbability]]. * Defaults to false, meaning the actual deletion happens with the probability as specified by [[gcProbability]]. * @param bool $expiredOnly whether to removed expired cache files only. * If false, all cache files under [[cachePath]] will be removed. */ public function gc($force = false, $expiredOnly = true) { if ($force || mt_rand(0, 1000000) < $this->gcProbability) { $this->gcRecursive($this->cachePath, $expiredOnly); } }

这里问题就出现了,$gcProbability的默认值是10,也就是说,只有0.001%的概率会在设置缓存的同时清理过期缓存。

这不就跟没有一样!

所以对于缓存来说,需要我们主动定期清理过期缓存,不然对应的存储空间就会被占满。

Yii::$app->cache->gc(true);

优化缓存配置

组件的cache在项目的配置文件中定义

'components' => ['cache' => [ 'class' => 'yii\caching\FileCache', ],],

这里的自由度就出现了,现在这个配置,是文件缓存,也就是不管是数据缓存还是页面缓存,都是保存在文件里的

根据源码 public $cachePath = '@runtime/cache';

缓存的文件是放在runtime/cache文件夹的

那么问题就出现了,磁盘的性能是有瓶颈的,文件读写会影响缓存性能。

目前可选的缓存有

yii\caching\ApcCache,APC扩展

yii\caching\DbCache,数据库缓存

yii\caching\DummyCache,假的缓存,就是现在没条件上缓存先把坑占上

yii\caching\FileCache,文件缓存

yii\caching\MemCache,使用 PHP memcache 和 memcached 扩展

yii\redis\Cache,redis

yii\caching\WinCache,使用 PHP WinCache 扩展

yii\caching\XCache,使用 PHP XCache扩展

yii\caching\ZendDataCache,使用Zend Data Cache

总结

我在本文中,通过渐进的方式,讲了如何使用Yii2的缓存组件,对于一般的使用者来讲,已经涵盖了超过九成的坑。

如果你正在学习PHP,希望你收藏这篇文章,这会对你以后有所帮助。

在这里插入图片描述

到此这篇关于PHP之深入学习Yii2缓存Cache组件详细讲解的文章就介绍到这了,更多相关PHP之深入学习Yii2缓存Cache组件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyfdpg.html