Golang中的Mongo中值运算是一项重要的技术,对于开发人员来说具有很大的意义。它可以让我们在处理Mongo数据库时更加灵活和高效。在Golang中,我们可以使用Mongo中值运算来实现各种数据操作,如插入、更新和删除等。这种运算方式可以让我们更好地利用Mongo的强大功能,提高我们的开发效率。本文将通过实际案例,介绍Golang中的Mongo中值运算的使用方法和注意事项,帮助开发人员更好地掌握这项技术。
我在 mongo (go) 中有一个集合,其类型是:
type CreateFeedbackRequest struct { UserID string `json:"user_id" validate:"required"` WaybillID uint64 `json:"waybill_id" validate:"required"` Rating int `json:"rating" validate:"required"` Comment string `json:"comment"` ReceivedAt time.Time `json:"received_at" validate:"required"` }
我需要评估某个用户(通过他的 user_id
)的最后 5 条记录(通过 receivedAt
时间字段)的评分中值。
我已经得到了这个:
matchStage := bson.D{{"$match", bson.D{{"_id", userID}}}} sortStage := bson.D{{"$sort", bson.D{{"created_at", 1}}}} limitStage := bson.D{{"$limit", tripsCount}} cursor, err := r.c.Aggregate(ctx, mongo.Pipeline{matchStage, sortStage, limitStage})
但我不知道如何获得这 5 行的评分中位数。我不确定我这样做的正确方法。求助,谢谢
在 $limit
阶段之后,自 mongodb 版本 7.0 以来的一个选项是 $group
与 $median
累加器
groupgStage := bson.D{{"$group", bson.D{ {"_id", 0}, {"median", bson.D{{"$median", bson.D{{"$input", "$rating"}, {"method", "approximate"}} }}} }}}
对于旧版本,您可以
$sort
通过 rating
$group
和 $push
所有 rating
到一个数组(限制后全部 5 个)$project
数组中间的项目它看起来像这样:
sortRatingStage := bson.D{{"$sort", bson.D{{"rating", 1}}}} groupStage := bson.D{{"$group", bson.D{{"_id", 0}, {"ratings", bson.D{{"$push", "ratings"}}}}}} projectStage := bson.D{{"$project", bson.D{ {"_id", 0}, {median, bson.D{{"$arrayElemAt", bson.D{ {"$ratings", bson.D{{"$floor", bson.D{ {"$divide", bson.A{{bson.D{{"$size", "$ratings"}}, 2}}} }}}} }}}} }}}}
以上是Golang中的Mongo中值运算的详细内容。更多信息请关注PHP中文网其他相关文章!