瀏覽代碼

增加 redis 队列

abiao 5 年之前
父節點
當前提交
ddb7d7d315
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      go/gopath/src/fohow.com/apps/helpers/redis_helper.go

+ 2 - 0
go/gopath/src/fohow.com/apps/helpers/redis_helper.go

@@ -54,6 +54,8 @@ func GetRedisValue(key string) (bool, string) {
 		return false, ""
 	}
 	result := client.Get(key).String()
+	beego.BeeLogger.Info("result 返回字符:%s", result)
+
 	if result == "redis: nil" {
 		return false, result
 	}