成都创新互联网站制作重庆分公司

golang之mgo自增id

import (
  "fmt"
  "gopkg.in/mgo.v2"
  "gopkg.in/mgo.v2/bson"
  "../../funcs"
)

// id从1开始递增
func GenId(db *mgo.Database) (int64, error) {
  IDInt64 := struct {
     Value int64 `bson:"max_id"`
  }{Value: 1}
  _, err := db.C("gen_id").Find(bson.M{}).Apply(mgo.Change{Update: bson.M{"$inc": IDInt64}, Upsert: true, ReturnNew: true}, &IDInt64)
  return IDInt64.Value, err
}


网站栏目:golang之mgo自增id
本文网址:http://cxhlcq.com/article/gseoec.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部