Home > Backend Development > PHP Tutorial > A brief analysis of the use of Yii2 cache, a brief analysis of the use of Yii2 cache_PHP tutorial

A brief analysis of the use of Yii2 cache, a brief analysis of the use of Yii2 cache_PHP tutorial

WBOY
Release: 2016-07-12 08:52:50
Original
874 people have browsed it

A brief analysis of the use of Yii2 cache,A brief analysis of the use of Yii2 cache

A good framework is definitely inseparable from the use of cache. On the contrary, a framework without cache is definitely not A good framework seems to have the same meaning. Regardless, let's first take a look at how caching is used in yii2.

It’s time for our first step again. Let’s configure the components first.

For convenience, our caching component is configured in the commonconfigmain.php file. First, let’s simply configure the file cache

'components' => [ 
'cache' => [ 
'class' => 'yii\caching\FileCache', 
'cachePath' => '@runtime/cache2', 
], 
],
Copy after login

The so-called file caching actually means storing the data we want to cache in files. So where is the data cached?

//The default cache path is in the @appruntimecache directory. If you want to modify the cache path, you can configure cachePath as configured above

Let’s take a look directly

$cache = Yii::$app->cache; 
$data = $cache->get('cache_data_key'); 
if ($data === false) { 
//这里我们可以操作数据库获取数据,然后通过$cache->set方法进行缓存 
$cacheData = ...... 
//set方法的第一个参数是我们的数据对应的key值,方便我们获取到 
//第二个参数即是我们要缓存的数据 
//第三个参数是缓存时间,如果是0,意味着永久缓存。默认是0 
$cache->set('cache_data_key', $cacheData, 60*60); 
} 
var_dump($data);
Copy after login

The above content is the editor’s introduction to how to use Yii2 cache. You can refer to it.

The following will introduce how to set up Cache cache in Yii

First add:

to the components array of the configuration file

Copy code The code is as follows:
'cache'=>array( 'class'=>'CFileCache'),

Set Cache:

Yii::app()->cache->set('testcache', array(1,3,4,6));//默认有效期为一年
Yii::app()->cache->set('testcache', array(1,3,4,6), 3600);//一个钟,秒为单位
Copy after login

Get Cache:

$data = Yii::app()->cache->get('testcache');
Copy after login

Delete a single Cache:

Yii::app()->cache->delete('testcache');
Copy after login

Clear all Cache:

Yii::app()->cache->flush();
Copy after login

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1125890.htmlTechArticleA brief analysis of the use of Yii2 cache, a brief analysis of the use of Yii2 cache, a good framework is definitely inseparable from the use of cache , on the contrary, a framework without caching is definitely not a good framework, it seems...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template