tp6 redis使用
2021/12/31 2:10:35
本文主要是介绍tp6 redis使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
/**
* 查询商家信息
* @param $id 商家id
*/
public function getStoreInfo(Request $request)
{
$validate = new CommonValidate([
'id' => 'require|integer',
]);
if (!$validate->check($request->param())) {
return api_json(1, $validate->getError());
}
$store_id = $request->param('id');
$redis = new Redis();
// 获取redis缓存
$store_info = $redis->get('getStoreInfo' . $store_id);
if (!$store_info) {
$store_info = StoreModel::where(['store_id' => $request->param('id')])->find()->toArray();
// 设置redis缓存 第一个参数 key,这里设置的是方法名拼接上传过来的商家id,防止重复,第二个参数就是 值
$redis->set('getStoreInfo' . $store_id, $store_info,10); //设置10秒过期 不填默认0为永久缓存
return api_json('0', 'mysql', $store_info);
} else {
return api_json('0', 'reids', $store_info);
}
}
这篇关于tp6 redis使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-07Redis高并发入门详解
- 2024-12-07Redis缓存入门:新手必读指南
- 2024-12-07Redis缓存入门:新手必读教程
- 2024-12-07Redis入门:新手必备的简单教程
- 2024-12-07Redis入门:新手必读的简单教程
- 2024-12-06Redis入门教程:从安装到基本操作
- 2024-12-06Redis缓存入门教程:轻松掌握缓存技巧
- 2024-12-04Redis入门:简单教程详解
- 2024-11-29Redis开发入门教程:从零开始学习Redis
- 2024-11-27Redis入门指南:快速掌握Redis基础操作