Browse Source

添加 queue 队列模块

程旭源 4 years ago
parent
commit
16530fd583
3 changed files with 26 additions and 1 deletions
  1. 1 0
      .gitignore
  2. 23 0
      application/extra/queue.php
  3. 2 1
      composer.json

+ 1 - 0
.gitignore

@@ -64,3 +64,4 @@ fabric.properties
 .idea/sonarlint
 .idea/sonarlint
 vendor
 vendor
 .idea
 .idea
+runtime

+ 23 - 0
application/extra/queue.php

@@ -0,0 +1,23 @@
+<?php
+// +----------------------------------------------------------------------
+// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
+// +----------------------------------------------------------------------
+// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
+// +----------------------------------------------------------------------
+// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
+// +----------------------------------------------------------------------
+// | Author: yunwuxin <448901948@qq.com>
+// +----------------------------------------------------------------------
+
+return [
+//    'connector' => 'Sync',
+    'connector'     =>  'Redis',
+    'expire'        =>  null,
+    'default'       =>  'default',
+    'host'          =>  '127.0.0.1',
+    'port'          =>  6379,
+    'password'      =>  'Z159357p',
+    'select'        =>  10,
+    'timeout'       =>  0,
+    'persistent'    =>  false
+];

+ 2 - 1
composer.json

@@ -24,7 +24,8 @@
         "phpmailer/phpmailer": "~6.0.6",
         "phpmailer/phpmailer": "~6.0.6",
         "karsonzhang/fastadmin-addons": "~1.1.9",
         "karsonzhang/fastadmin-addons": "~1.1.9",
         "overtrue/pinyin": "~3.0",
         "overtrue/pinyin": "~3.0",
-        "phpoffice/phpspreadsheet": "^1.2"
+        "phpoffice/phpspreadsheet": "^1.2",
+        "topthink/think-queue": "1.1.6"
     },
     },
     "config": {
     "config": {
         "preferred-install": "dist"
         "preferred-install": "dist"