代码:
// $result = Cache::store(‘redis’)->zRangeByScore(‘order_status’, 0, time(), [‘limit’ => [0,1]]);
$result = Cache::zRangeByScore(‘order_status’, 0, time(), [‘limit’ => [0,1]]);
用了两种方式都试了试,一个是config默认redis,一个是默认file在用 Cache::store(‘redis’)方法调用,
但是在用命令行的时候,都报错:
[BadFunctionCallException]
not support: redis
redis在其他地方是正常使用的,之前的章节都可以正常使用,到了这里用命令行就出错了。
在代码最前面输出1截断调试,php命令行是可以调用的,加上redis就报错了。