tp5的Cache类目录:/thinkphp/library/think/Cache.php
(适配器)各类型驱动:/thinkphp/library/think/cache/Driver.php
Cache配置:对应模块application/config.php
一览Cache类方法:
- init()初始化
- 使用:Cache::init(['type' => 'redis']); type为缓存方式,如file redis
- 返回:instance
- store()
- 选择缓存类型,使用该方法,config.php的type必须设置为complex
- 缓存类型设置:config.php 设置cache的元素块,各元素块可设置缓存方式,如file,redis,
- 其最终会调用init()方法,若选择类型store,可以不必单独调用init()方法。
- 使用:Cache->store('redis'), 这里的redis是指其中一个元素块
- 返回instance
- 选择缓存类型,使用该方法,config.php的type必须设置为complex
- has
- 使用:Cache->store('redis')->has('name');
- 返回:true false
- get
- 使用:Cache->store('redis')->get('name');
- 返回:值 false
- set
- 使用:Cache->store('redis')->set('name');
- 返回:true false
- rm
- 使用:Cache->store('redis')->rm('name');
- 返回:true false
- 如上是基本的使用,更多方法,请查看文档或源码。
- 备注:在使用redis时,因redis驱动类整理好的方法比较少,我们可以通过init()或store()方法获取handle,使用phpredis的原生方法。如,$res = Cache::init(['type' => 'redis']); $redis = $res->handle(); $redis->setBit('testbit', 1, 1);tp5事务时建议使用Cache:store('redis')方式获取redis,使用init方法会报错无redis。