tongshanglei 2 years ago
parent
commit
7824d2b438
1 changed files with 6 additions and 0 deletions
  1. 6 0
      app/common.php

+ 6 - 0
app/common.php

@@ -1495,4 +1495,10 @@ use think\facade\Cache;
         return $conn;
     }
 
+    function pushDataToRedisList($data)
+    {
+        $redis=Cache::store('redis')->handler();
+        $redis->rpush('ningbo_fangdao_sync_data', json_encode($data));
+    }
+