by Robin at 20241216

This commit is contained in:
Robin 2024-12-16 15:37:44 +08:00
parent 7233ef223e
commit a5db8148b7
1 changed files with 12 additions and 2 deletions

View File

@ -2364,7 +2364,12 @@ func (s *Service) utilBuildInwardHyperLink(ctx *gin.Context, frontendRouteId int
}
func (s *Service) utilIncrUrc(mid, nType, incr int64) error {
logger.Info("increasing urc_%v_%v by %v records", mid, nType, incr)
if incr == 0 {
return nil
}
logger.Info("increasing urc_%v_%v by %v records, time: %v", mid, nType, incr, util.FormatTs(time.Now().Unix(), "2006年1月2日 15时04分05秒"))
_, err := redis.GetRedisClient().IncrBy(util.GetNotifUrcIdForRedis(mid, nType), incr)
if err != nil {
logger.Error("Redis IncrBy fail, err: %v", err)
@ -2379,7 +2384,12 @@ func (s *Service) utilIncrUrc(mid, nType, incr int64) error {
}
func (s *Service) utilDecrUrc(mid, nType, incr int64) error {
logger.Info("decreasing urc_%v_%v by %v records", mid, nType, incr)
if incr == 0 {
return nil
}
logger.Info("decreasing urc_%v_%v by %v records, time: %v", mid, nType, incr, util.FormatTs(time.Now().Unix(), "2006年1月2日 15时04分05秒"))
_, err := redis.GetRedisClient().DecrBy(util.GetNotifUrcIdForRedis(mid, nType), incr)
if err != nil {
logger.Error("Redis DecrBy fail, err: %v", err)