Commit e8c186be authored by hujiebin's avatar hujiebin

Update gift.go

parent fc9387a9
......@@ -26,7 +26,7 @@ func GetPastTop50SendGiftUsers(model *domain.Model) []recommendUserGift {
var res []recommendUserGift
if err := model.DB().Table("gift_operate").Select("send_user_id,SUM(send_user_diamond) send_user_diamond").
Where("created_time >= ?", time.Now().Add(-time.Hour*12)).Group("send_user_id").
Having("send_user_diamond > 100000").Order("send_user_diamond DESC").Limit(30).Find(&res).Error; err != nil {
Having("send_user_diamond > 100000").Order("send_user_diamond DESC").Limit(34).Find(&res).Error; err != nil {
model.Log.Errorf("GetPastTop50SendGiftUsers fail:%v", err)
}
recommendUserGiftCache.SetWithExpire(recommendUserGiftKey, res, time.Minute*5)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment