wupengfei 2 年 前
コミット
c3d6ef877c
1 ファイル変更2 行追加1 行削除
  1. 2 1
      addons/shopro/controller/Qc.php

+ 2 - 1
addons/shopro/controller/Qc.php

@@ -15,7 +15,8 @@ class Qc extends Base
     public function index()
     {
         $options = \think\Config::get('queue');
-        var_dump($options);
+        $config = Config::where('name', 'order')->cache(300)->find();        // 读取配置自动缓存 5 分钟
+        var_dump($options,$config);
     }
 
 }