浏览代码

推送数据到java的队列,把数据入库和请求接口分离开

lcl 1 月之前
父节点
当前提交
b09e0cd65d
共有 2 个文件被更改,包括 17 次插入6 次删除
  1. 1 0
      AppStart/StartHelper.cs
  2. 16 6
      Util/Queue/PosPushHelper.cs

+ 1 - 0
AppStart/StartHelper.cs

@@ -17,6 +17,7 @@
                 RePushHelper.Instance.Start(); //重新推送队列
                 AliyunPushHelper.Instance.Start(); //阿里云消息推送
                 PosPushHelper.Instance.Start(); //推送机具数据
+                PosPushHelper.Instance.StartSaveToDb(); //保存推送结果
                 PosRePushHelper.Instance.Start(); //重推送机具数据
 
                 // DefaultHelper.Instance.Start(); //队列程序

+ 16 - 6
Util/Queue/PosPushHelper.cs

@@ -49,27 +49,27 @@ namespace MySystem
             }
         }
 
-        public void StartTest()//启动
+        public void StartSaveToDb()//启动
         {
-            Thread thread = new Thread(threadStartTest);
+            Thread thread = new Thread(threadStartSaveToDb);
             thread.IsBackground = true;
             thread.Start();
         }
 
-        private void threadStartTest()
+        private void threadStartSaveToDb()
         {
             while (true)
             {
-                string content = RedisDbconnTest.Instance.RPop<string>("KxsPosDataQueue");
+                string content = RedisDbconn.Instance.RPop<string>("KxsPosDataSaveToDbQueue");
                 if (!string.IsNullOrEmpty(content))
                 {
                     try
                     {
-                        DoSomeThing(content);
+                        DoSomeThing2(content);
                     }
                     catch (Exception ex)
                     {
-                        LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex, "推送机具数据异常");
+                        LogHelper.Instance.WriteLog(DateTime.Now.ToString() + "\n" + content + "\n" + ex, "保存推送结果");
                     }
                 }
                 else
@@ -101,6 +101,16 @@ namespace MySystem
             function.WriteLog("encryptContent:" + encryptContent, "统一推送日志");
             string res = PostWebRequest(url, encryptContent, new Dictionary<string, string>());
             function.WriteLog("res:" + res + "\n\n\n", "统一推送日志");
+            RedisDbconn.Instance.AddList("KxsPosDataSaveToDbQueue", dataContent + "#cut#" + encryptContent + "#cut#" + dataType + "#cut#" + res);
+        }
+
+        public void DoSomeThing2(string content)
+        {
+            string[] data = content.Split(new string[]{ "#cut#" }, StringSplitOptions.None);
+            string dataContent = data[0];
+            string encryptContent = data[1];
+            string dataType = data[2];
+            string res = data[3];
             if(!res.Contains("\"status\""))
             {
                 SaveToDb(dataContent, encryptContent, dataType, res);