为什么启动延迟队列会报错 说不应该被静态调用?????
来源:12-11 利用高性能的redis延迟队列处理无效订单(下)
慕UI4775734
2020-05-20
$result = Cache::store(‘redis’) -> zRangeByScore(‘order_status’,0,time(),[‘limit’ => [0,1]]);
delRedis=Cache::store(′redis′)−>zRem(′orderstatus′,delRedis = Cache::store('redis') -> zRem('order_status',delRedis=Cache::store(′redis′)−>zRem(′orderstatus′,result[0]);
为什么启动延迟队列会报错 Non-static method think\Cache::store() should not be called statically
根目录的配置文件也修改了
<?php
// +----------------------------------------------------------------------
// | 缓存设置
// +----------------------------------------------------------------------
return [
// 默认缓存驱动
'default' => env('cache.driver', 'file'),
// 缓存连接方式配置
'stores' => [
'file' => [
// 驱动方式
'type' => 'File',
// 缓存保存目录
'path' => '',
// 缓存前缀
'prefix' => '',
// 缓存有效期 0表示永久缓存
'expire' => 0,
// 缓存标签前缀
'tag_prefix' => 'tag:',
// 序列化机制 例如 ['serialize', 'unserialize']
'serialize' => [],
],
// 更多的缓存连接
//定义redis配置
'redis' => [
'host' => '127.0.0.1',
'port' => 6379,
'type' => 'redis'
],
],
];
写回答
2回答
-
酋长小枪
2020-06-07
Non-static method think\Cache::store()
命名空间有问题没有? use think\facade\Cache;
00 -
singwa
2020-06-01
这个问题请仔细看老师的课程内容哈。老师都有说明的。
有疑惑欢迎随时沟通哈。
00
相似问题