打印影响延迟优化

This commit is contained in:
hoteas 2022-05-13 09:30:09 +08:00
parent ce95cdc021
commit 2ecc70288e
7 changed files with 23 additions and 14 deletions

View File

@ -13,7 +13,7 @@ type Context struct {
*Application *Application
Resp http.ResponseWriter Resp http.ResponseWriter
Req *http.Request Req *http.Request
Log Map//日志有则创建 Log Map //日志有则创建
RouterString []string RouterString []string
Config Map Config Map
Db *HoTimeDB Db *HoTimeDB
@ -25,7 +25,6 @@ type Context struct {
HandlerStr string //复写请求url HandlerStr string //复写请求url
} }
// Mtd 唯一标志 // Mtd 唯一标志
func (that *Context) Mtd(router [3]string) Map { func (that *Context) Mtd(router [3]string) Map {
that.Application.Router[router[0]][router[1]][router[2]](that) that.Application.Router[router[0]][router[1]][router[2]](that)
@ -61,26 +60,28 @@ func (that *Context) Display(statu int, data interface{}) {
} }
func (that *Context) View() { func (that *Context) View() {
if that.RespFunc!=nil { if that.RespFunc != nil {
that.RespFunc() that.RespFunc()
} }
if that.RespData == nil { if that.RespData == nil {
return return
} }
//创建日志 //创建日志
if that.Log!=nil{ if that.Log != nil {
that.Log["time"]=time.Now().Unix() that.Log["time"] = time.Now().Unix()
if that.Session("admin_id").Data!=nil{ if that.Session("admin_id").Data != nil {
that.Log["admin_id"]=that.Session("admin_id").ToCeilInt() that.Log["admin_id"] = that.Session("admin_id").ToCeilInt()
} }
if that.Session("user_id").Data!=nil{ if that.Session("user_id").Data != nil {
that.Log["user_id"]=that.Session("user_id").ToCeilInt() that.Log["user_id"] = that.Session("user_id").ToCeilInt()
} }
that.Db.Insert("logs",that.Log) that.Db.Insert("logs", that.Log)
} }
d, err := json.Marshal(that.RespData) d, err := json.Marshal(that.RespData)
if err != nil { if err != nil {
that.Display(1, err.Error())
that.View()
return return
} }
that.DataSize = len(d) that.DataSize = len(d)

View File

@ -24,8 +24,8 @@ func (that *tencent) Init(secretId, secretKey string) {
that.secretId = secretId that.secretId = secretId
that.secretKey = secretKey that.secretKey = secretKey
that.credential = common.NewCredential( that.credential = common.NewCredential(
"AKIDOgT8cKCQksnY7yKATaYO7j9ORJzSYohP", that.secretId,
"GNXgjdN4czA9ya0FNMApVJzTmsmU0KSN", that.secretKey,
) )
} }

View File

@ -893,7 +893,7 @@ var DeclareCtr = Ctr{
RecommendDeclare = declare RecommendDeclare = declare
} }
matchingDegreePercent := ObjToFloat64(matchingDegree) / ObjToFloat64(matchingDegreeCount) matchingDegreePercent := ObjToFloat64(ObjToFloat64(matchingDegree) / ObjToFloat64(matchingDegreeCount))
if matchingDegreePercent < 0.5 { if matchingDegreePercent < 0.5 {
matchingDegreePercent = 0.5 + matchingDegreePercent matchingDegreePercent = 0.5 + matchingDegreePercent

View File

@ -50,6 +50,8 @@
"sessionName": "HOTIME", "sessionName": "HOTIME",
"smsKey": "b0eb4bf0198b9983cffcb85b69fdf4fa", "smsKey": "b0eb4bf0198b9983cffcb85b69fdf4fa",
"smsLogin": "【政策通】您的验证码为:{code}请在5分钟内使用切勿将验证码泄露于他人如非本人操作请忽略。", "smsLogin": "【政策通】您的验证码为:{code}请在5分钟内使用切勿将验证码泄露于他人如非本人操作请忽略。",
"tencentId": "AKIDOgT8cKCQksnY7yKATaYO7j9ORJzSYohP",
"tencentKey": "GNXgjdN4czA9ya0FNMApVJzTmsmU0KSN",
"tpt": "tpt", "tpt": "tpt",
"wechatAppID": "wxdcc8d6360661a179", "wechatAppID": "wxdcc8d6360661a179",
"wechatAppNotifyUrl": "https://zcth5.kct.cn/app/vip_order/callback", "wechatAppNotifyUrl": "https://zcth5.kct.cn/app/vip_order/callback",

View File

@ -4,6 +4,7 @@ import (
. "code.hoteas.com/golang/hotime" . "code.hoteas.com/golang/hotime"
"code.hoteas.com/golang/hotime/dri/aliyun" "code.hoteas.com/golang/hotime/dri/aliyun"
"code.hoteas.com/golang/hotime/dri/ddsms" "code.hoteas.com/golang/hotime/dri/ddsms"
"code.hoteas.com/golang/hotime/dri/tencent"
"code.hoteas.com/golang/hotime/dri/wechat" "code.hoteas.com/golang/hotime/dri/wechat"
"code.hoteas.com/golang/hotime/example/app" "code.hoteas.com/golang/hotime/example/app"
"code.hoteas.com/golang/hotime/example/provider" "code.hoteas.com/golang/hotime/example/provider"
@ -31,6 +32,7 @@ func main() {
appIns.Config.GetString("wechatPaySerialNo"), appIns.Config.GetString("wechatPaySerialNo"),
appIns.Config.GetString("wechatPayMApiV3Key"), appIns.Config.GetString("wechatPayMApiV3Key"),
appIns.Config.GetString("wechatPayPrivateKey")) appIns.Config.GetString("wechatPayPrivateKey"))
tencent.Tencent.Init(appIns.Config.GetString("tencentId"), appIns.Config.GetString("tencentKey"))
//用户侧访问前设置 //用户侧访问前设置
appIns.SetConnectListener(func(that *Context) (isFinished bool) { appIns.SetConnectListener(func(that *Context) (isFinished bool) {

View File

@ -132,6 +132,8 @@ var Salesman = Ctr{
} }
that.Db.Update("wechat", Map{"salesman_id": salesman.GetCeilInt64("id")}, Map{"id": wechat.GetInt64("id")}) that.Db.Update("wechat", Map{"salesman_id": salesman.GetCeilInt64("id")}, Map{"id": wechat.GetInt64("id")})
that.Db.Update("salesman", Map{"login_time[#]": "now()", "modify_time[#]": "now()"},
Map{"id": salesman.GetCeilInt("id")})
wechat["salesman_id"] = salesman.GetCeilInt64("id") wechat["salesman_id"] = salesman.GetCeilInt64("id")
that.Session("salesman_id", salesman.GetCeilInt64("id")) that.Session("salesman_id", salesman.GetCeilInt64("id"))

View File

@ -43,6 +43,8 @@ var Wechat = Ctr{
//有用户直接返回 //有用户直接返回
if wechat.GetCeilInt("salesman_id") != 0 { if wechat.GetCeilInt("salesman_id") != 0 {
that.Db.Update("salesman", Map{"login_time[#]": "now()"},
Map{"id": wechat.GetCeilInt("salesman_id")})
that.Session("salesman_id", wechat.GetCeilInt("salesman_id")) that.Session("salesman_id", wechat.GetCeilInt("salesman_id"))
that.Display(0, "登录成功") that.Display(0, "登录成功")