wupengfei il y a 2 ans
Parent
commit
c3d6ef877c
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  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);
     }
 
 }