...
 
Commits (40)
...@@ -225,14 +225,14 @@ func GetGroupConsumeCount(model *domain.Model, imGroupId, period string) (uint64 ...@@ -225,14 +225,14 @@ func GetGroupConsumeCount(model *domain.Model, imGroupId, period string) (uint64
// 流水 // 流水
keyDiamond := rediskey.GetGroupSupportConsumeSummary(period) keyDiamond := rediskey.GetGroupSupportConsumeSummary(period)
consume, err := model.RedisCluster.ZScore(context.Background(), keyDiamond, imGroupId).Result() consume, err := model.RedisCluster.ZScore(context.Background(), keyDiamond, imGroupId).Result()
if err != nil { if err != nil && err != redis.Nil {
model.Log.Errorf("GetSupportLevelByRedis key:%v, groupId:%v, err:%v", keyDiamond, imGroupId, err) model.Log.Errorf("GetSupportLevelByRedis key:%v, groupId:%v, err:%v", keyDiamond, imGroupId, err)
return 0, 0, err return 0, 0, err
} }
// 支持者数量 // 支持者数量
keySupportNum := rediskey.GetGroupSupportCountSupporter(period, imGroupId) keySupportNum := rediskey.GetGroupSupportCountSupporter(period, imGroupId)
count, err := model.RedisCluster.SCard(context.Background(), keySupportNum).Result() count, err := model.RedisCluster.SCard(context.Background(), keySupportNum).Result()
if err != nil { if err != nil && err != redis.Nil {
model.Log.Errorf("GetSupportLevelByRedis key:%v, groupId:%v, err:%v", keySupportNum, imGroupId, err) model.Log.Errorf("GetSupportLevelByRedis key:%v, groupId:%v, err:%v", keySupportNum, imGroupId, err)
return 0, 0, err return 0, 0, err
} }
......