利用golang驱动操作MongoDB数据库的步骤
安装mongodb驱动程序
mkdr mongodb cd mongodb go mod init go get go.mongodb.org/mongo-driver/mongo
连接mongodb
创建一个main.go文件
将以下包导入main.go文件中
package main import ( "context" "fmt" "log" "go.mongodb.org/mongo-driver/bson" "go.mongodb.org/mongo-driver/mongo" "go.mongodb.org/mongo-driver/mongo/options" "time" )
连接mongodb的uri格式为
mongodb://[username:password@]host1[:port1][,...hostn[:portn]][/[defaultauthdb][?options]]
单机版
mongodb://localhost:27017
副本集
mongodb://mongodb0.example.com:27017,mongodb1.example.com:27017,mongodb2.example.com:27017 /?replicaset = myrepl
分片集群
mongodb://mongos0.example.com:27017,mongos1.example.com:27017,mongos2.example.com:27017
mongo.connect()接受context和options.clientoptions对象,该对象用于设置连接字符串和其他驱动程序设置。
通过context.todo()表示不确定现在使用哪种上下文,但是会在将来添加一个
使用ping方法来检测是否已正常连接mongodb
func main() { clientoptions := options.client().applyuri("mongodb://admin:password@localhost:27017") var ctx = context.todo() // connect to mongodb client, err := mongo.connect(ctx, clientoptions) if err != nil { log.fatal(err) } // check the connection err = client.ping(ctx, nil) if err != nil { log.fatal(err) } fmt.println("connected to mongodb!") defer client.disconnect(ctx)
列出所有数据库
databases, err := client.listdatabasenames(ctx, bson.m{}) if err != nil { log.fatal(err) } fmt.println(databases)
在go中使用bson对象
mongodb中的json文档以称为bson(二进制编码的json)的二进制表示形式存储。与其他将json数据存储为简单字符串和数字的数据库不同,bson编码扩展了json表示形式,例如int,long,date,float point和decimal128。这使应用程序更容易可靠地处理,排序和比较数据。go driver有两种系列用于表示bson数据:d系列类型和raw系列类型。
d系列包括四种类型:
- d:bson文档。此类型应用在顺序很重要的场景下,例如mongodb命令。
- m:无序map。除不保留顺序外,与d相同。
- a:一个bson数组。
- e:d中的单个元素。
插入数据到mongodb
插入单条文档
//定义插入数据的结构体 type sunshareboy struct { name string age int city string } //连接到test库的sunshare集合,集合不存在会自动创建 collection := client.database("test").collection("sunshare") wanger:=sunshareboy{"wanger",24,"北京"} insertone,err :=collection.insertone(ctx,wanger) if err != nil { log.fatal(err) } fmt.println("inserted a single document: ", insertone.insertedid)
执行结果如下
![](https://s4.51cto.com/images/blog/202011/07/378adacb26314b3532fa8947e3516fc1.png?x-oss-process=image/watermark,size_16,text_qduxq1rp5y2a5a6i,color_ffffff,t_100,g_se,x_10,y_10,shadow_90,type_zmfuz3pozw5nagvpdgk=)
#### 同时插入多条文档
```go
collection := client.database("test").collection("sunshare")
dongdong:=sunshareboy{"张冬冬",29,"成都"}
huazai:=sunshareboy{"华仔",28,"深圳"}
suxin:=sunshareboy{"素心",24,"甘肃"}
god:=sunshareboy{"刘大仙",24,"杭州"}
qiaoke:=sunshareboy{"乔克",29,"重庆"}
jiang:=sunshareboy{"姜总",24,"上海"}
//插入多条数据要用到切片
boys:=[]interface{}{dongdong,huazai,suxin,god,qiaoke,jiang}
insertmany,err:= collection.insertmany(ctx,boys)
if err != nil {
log.fatal(err)
}
fmt.println("inserted multiple documents: ", insertmany.insertedids)
从mongdb中查询数据
查询单个文档
查询单个文档使用collection.findone()函数,需要一个filter文档和一个可以将结果解码为其值的指针
var result sunshareboy filter := bson.d{{"name","wanger"}} err = collection.findone(context.todo(), filter).decode(&result) if err != nil { log.fatal(err) } fmt.printf("found a single document: %+v\n", result)
返回结果如下
connected to mongodb!
found a single document: {name:wanger age:24 city:北京}
connection to mongodb closed.
查询多个文档
查询多个文档使用collection.find()函数,这个函数会返回一个游标,可以通过他来迭代并解码文档,当迭代完成后,关闭游标
- find函数执行find命令并在集合中的匹配文档上返回cursor。
- filter参数必须是包含查询运算符的文档,并且可以用于选择结果中包括哪些文档。不能为零。空文档(例如bson.d {})应用于包含所有文档。
- opts参数可用于指定操作的选项,例如我们可以设置只返回五条文档的限制(https://godoc.org/go.mongodb.org/mongo-driver/mongo/options#find)。
//定义返回文档数量 findoptions := options.find() findoptions.setlimit(5) //定义一个切片存储结果 var results []*sunshareboy //将bson.d{{}}作为一个filter来匹配所有文档 cur, err := collection.find(context.todo(), bson.d{{}}, findoptions) if err != nil { log.fatal(err) } //查找多个文档返回一个游标 //遍历游标一次解码一个游标 for cur.next(context.todo()) { //定义一个文档,将单个文档解码为result var result sunshareboy err := cur.decode(&result) if err != nil { log.fatal(err) } results = append(results, &result) } fmt.println(result) if err := cur.err(); err != nil { log.fatal(err) } //遍历结束后关闭游标 cur.close(context.todo()) fmt.printf("found multiple documents (array of pointers): %+v\n", results)
返回结果如下
connected to mongodb!
{wanger 24 北京}
{张冬冬 29 成都}
{华仔 28 深圳}
{素心 24 甘肃}
{刘大仙 24 杭州}
found multiple documents (array of pointers): &[0xc000266450 0xc000266510 0xc000266570 0xc0002665d0 0xc000266630]
connection to mongodb closed.
更新mongodb文档
更新单个文档
更新单个文档使用collection.updateone()函数,需要一个filter来匹配数据库中的文档,还需要使用一个update文档来更新操作
- filter参数必须是包含查询运算符的文档,并且可以用于选择要更新的文档。不能为零。如果过滤器不匹配任何文档,则操作将成功,并且将返回matchcount为0的updateresult。如果过滤器匹配多个文档,将从匹配的集合中选择一个,并且matchedcount等于1。
- update参数必须是包含更新运算符的文档(),并且可以用于指定要对所选文档进行的修改。它不能为nil或为空。
- opts参数可用于指定操作的选项。
filter := bson.d{{"name","张冬冬"}} //如果过滤的文档不存在,则插入新的文档 opts := options.update().setupsert(true) update := bson.d{ {"$set", bson.d{ {"city", "北京"}}, }} result, err := collection.updateone(context.todo(), filter, update,opts) if err != nil { log.fatal(err) } if result.matchedcount != 0 { fmt.printf("matched %v documents and updated %v documents.\n", result.matchedcount, result.modifiedcount) } if result.upsertedcount != 0 { fmt.printf("inserted a new document with id %v\n", result.upsertedid) }
返回结果如下
connected to mongodb!
matched 1 documents and updated 1 documents.
connection to mongodb closed.
更新多个文档
更新多个文档使用collection.updateone()函数,参数与collection.updateone()函数相同
filter := bson.d{{"city","北京"}} //如果过滤的文档不存在,则插入新的文档 opts := options.update().setupsert(true) update := bson.d{ {"$set", bson.d{ {"city", "铁岭"}}, }} result, err := collection.updatemany(context.todo(), filter, update,opts) if err != nil { log.fatal(err) } if result.matchedcount != 0 { fmt.printf("matched %v documents and updated %v documents.\n", result.matchedcount, result.modifiedcount) } if result.upsertedcount != 0 { fmt.printf("inserted a new document with id %v\n", result.upsertedid) }
返回结果如下
connected to mongodb!
matched 2 documents and updated 2 documents.
connection to mongodb closed.
删除mongodb文档
可以使用collection.deleteone()或collection.deletemany()删除文档。如果你传递bson.d{{}}作为过滤器参数,它将匹配数据集中的所有文档。还可以使用collection. drop()删除整个数据集。
filter := bson.d{{"city","铁岭"}} deleteresult, err := collection.deletemany(context.todo(), filter) if err != nil { log.fatal(err) } fmt.printf("deleted %v documents in the trainers collection\n", deleteresult.deletedcount)
返回结果如下
connected to mongodb!
deleted 2 documents in the trainers collection
connection to mongodb closed.
获取mongodb服务状态
上面我们介绍了对mongodb的crud,其实还支持很多对mongodb的操作,例如聚合、事物等,接下来介绍一下使用golang获取mongodb服务状态,执行后会返回一个bson.raw类型的数据
ctx, _ = context.withtimeout(context.background(), 30*time.second) serverstatus, err := client.database("admin").runcommand( ctx, bsonx.doc{{"serverstatus", bsonx.int32(1)}}, ).decodebytes() if err != nil { fmt.println(err) } fmt.println(serverstatus) fmt.println(reflect.typeof(serverstatus)) version, err := serverstatus.lookuperr("version") fmt.println(version.stringvalue()) if err != nil { fmt.println(err) }
参考链接
到此这篇关于利用golang驱动操作mongodb数据库的文章就介绍到这了,更多相关golang驱动操作mongodb内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!