<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本篇記錄通過GO語言操作mongodb,實現的流程包括:
go使用mongo的程式碼如下,go操作mongo的SDK是mongo-driver,一個第三方模組。本篇主要就是將其執行起來。
package main import ( "context" "fmt" "log" "go.mongodb.org/mongo-driver/mongo" "go.mongodb.org/mongo-driver/mongo/options" "go.mongodb.org/mongo-driver/bson" ) type Student struct { Name string Age int } func main() { // 設定使用者端連線設定 clientOptions := options.Client().ApplyURI("mongodb://admin:123456@localhost:27017") // 連線到MongoDB client, err := mongo.Connect(context.TODO(), clientOptions) if err != nil { log.Fatal(err) } // 檢查連線 err = client.Ping(context.TODO(), nil) if err != nil { log.Fatal(err) } fmt.Println("Connected to MongoDB!") collection := client.Database("q1mi").Collection("student") s1 := Student{"小紅", 12} s2 := Student{"小蘭", 10} s3 := Student{"小黃", 11} insertResult, err := collection.InsertOne(context.TODO(), s1) if err != nil { log.Fatal(err) } fmt.Println("Inserted a single document: ", insertResult.InsertedID) students := []interface{}{s2, s3} insertManyResult, err := collection.InsertMany(context.TODO(), students) if err != nil { log.Fatal(err) } fmt.Println("Inserted multiple documents: ", insertManyResult.InsertedIDs) filter := bson.D{{"name", "小蘭"}} // 建立一個Student變數用來接收查詢的結果 var result Student err = collection.FindOne(context.TODO(), filter).Decode(&result) if err != nil { log.Fatal(err) } fmt.Printf("Found a single document: %+vn", result) }
go之前對第三方包的管理不上心,其他語言比如python有pip,nodejs有npm,而go卻沒有一個官方的管理工具。
在go 1.11之前,開發者需要要關注GOPATH環境變數,這對於開發者來說不友好。
經過幾次變更後,go於1.12版本開始正式使用go Module,go終於有了一個官方的處理方式,開發者也可以拋棄GOPATH了。
go的包管理包括:
➜ go mkdir mongo
➜ go cd mongo
使用mod命令初始化
go mod init 檔名
➜ go mod init mongo
go: creating new go.mod: module mongo
➜ ls -al
total 8
drwxr-xr-x 3 ljk staff 96 2 2 22:02 .
drwxr-xr-x 5 ljk staff 160 2 2 22:02 ..
-rw-r--r-- 1 ljk staff 22 2 2 22:02 go.mod
初始化成功之後當前目錄下會新建一個go.mod檔案,用於記錄安裝的模組和包
➜ mongo cat go.mod
module mongo
go 1.18
設定包下載代理
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct
下載 mongodb 映象
➜ mod docker pull mongo:latest latest: Pulling from library/mongo 70cf24b16239: Pull complete 197e79a59399: Pull complete 1a54d1916136: Pull complete 8547f0e899b2: Pull complete 315a8963db2b: Pull complete 0fce25e2f34f: Pull complete 1ce995f0f803: Pull complete e3bfd9b7202d: Pull complete 07bd59396de7: Pull complete Digest: sha256:3fe527dcddf277d4d5b278f5f03ddea5173cee84c792d12c5ac90c36ba40ba7a Status: Downloaded newer image for mongo:latest docker.io/library/mongo:latest
➜ mod docker images REPOSITORY TAG IMAGE ID CREATED SIZE mongo latest b2fa76e584f6 20 hours ago 618MB redis 5.0.4 b61ab367aee1 3 years ago 90MB
執行 mongodb 容器
➜ mod docker run -itd --name mongo -p 27017:27017 mongo --auth f3116f4e2ed1d81e7707ee42b67c01fdcd648461e1e7cd35ad0815dae2c1af5f ➜ mod ➜ mod ➜ mod docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES f3116f4e2ed1 mongo "docker-entrypoint.s…" 7 seconds ago Up 6 seconds 0.0.0.0:27017->27017/tcp mongo
登入 mongodb 容器並設定庫許可權
➜ mod docker exec -it mongo mongosh admin Current Mongosh Log ID: 63dbcaa4fb21cc3d13dcfde2 Connecting to: mongodb://127.0.0.1:27017/admin?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.6.2 Using MongoDB: 6.0.4 Using Mongosh: 1.6.2 For mongosh info see: https://docs.mongodb.com/mongodb-shell/ To help improve our products, anonymous usage data is collected and sent to MongoDB periodically (https://www.mongodb.com/legal/privacy-policy). You can opt-out by running the disableTelemetry() command. admin> db.createUser({ user:'admin',pwd:'123456',roles:[ { role:'userAdminAnyDatabase', db: 'admin'},"readWriteAnyDatabase"]}); { ok: 1 } admin> db.auth('admin', '123456') { ok: 1 } admin>
go run 可以直接下載依賴的模組,然後執行模組。
➜ mongo go run mongo_dev.go go: downloading go.mongodb.org/mongo-driver v1.11.1 go: downloading github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d go: downloading github.com/pkg/errors v0.9.1 go: downloading github.com/golang/snappy v0.0.1 go: downloading github.com/klauspost/compress v1.13.6 go: downloading github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe go: downloading github.com/xdg-go/scram v1.1.1 go: downloading github.com/xdg-go/stringprep v1.0.3 go: downloading golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d go: downloading golang.org/x/sync v0.0.0-20210220032951-036812b2e83c go: downloading golang.org/x/text v0.3.7 go: downloading github.com/xdg-go/pbkdf2 v1.0.0 Connected to MongoDB! Inserted a single document: ObjectID("63dbcaf83e1180444cc7dca1") Inserted multiple documents: [ObjectID("63dbcaf83e1180444cc7dca2") ObjectID("63dbcaf83e1180444cc7dca3")] Found a single document: {Name:小蘭 Age:10}
如果想通過編譯的方法執行程式而不是偵錯方法,可以通過一下三步:
➜ mongo_three go mod tidy go: finding module for package go.mongodb.org/mongo-driver/mongo/options go: finding module for package go.mongodb.org/mongo-driver/bson go: finding module for package go.mongodb.org/mongo-driver/mongo go: found go.mongodb.org/mongo-driver/bson in go.mongodb.org/mongo-driver v1.11.1 go: found go.mongodb.org/mongo-driver/mongo in go.mongodb.org/mongo-driver v1.11.1 go: found go.mongodb.org/mongo-driver/mongo/options in go.mongodb.org/mongo-driver v1.11.1 go: downloading github.com/google/go-cmp v0.5.2 go: downloading github.com/stretchr/testify v1.6.1 go: downloading github.com/tidwall/pretty v1.0.0 go: downloading github.com/kr/pretty v0.1.0 go: downloading github.com/kr/text v0.1.0 go: downloading github.com/davecgh/go-spew v1.1.1 go: downloading github.com/pmezard/go-difflib v1.0.0 go: downloading gopkg.in/yaml.v3 v3.0.1 go: downloading golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
更新依賴檔案之後,go.mod 檔案中就記載了下載的模組資訊,包括路徑和版本資訊
➜ mongo cat go.mod module mongo go 1.18 require ( github.com/golang/snappy v0.0.1 // indirect github.com/klauspost/compress v1.13.6 // indirect github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect github.com/pkg/errors v0.9.1 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/scram v1.1.1 // indirect github.com/xdg-go/stringprep v1.0.3 // indirect github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect go.mongodb.org/mongo-driver v1.11.1 // indirect golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect golang.org/x/text v0.3.7 // indirect )
下載依賴的模組
➜ mongo go mod download
模組真正的檔案放在gopath路徑下的pkg路徑下
~ go env . . GOPATH="/Users/ljk/Documents/go" ➜ mod pwd /Users/ljk/Documents/go/pkg/mod ➜ mod ls cache github.com go.mongodb.org golang.org
編譯程式
➜ mongo go build mongo_dev.go ➜ mongo ls go.mod go.sum mongo_dev mongo_dev.go
執行可執行檔案。
➜ mongo ./mongo_dev Connected to MongoDB! Inserted a single document: ObjectID("63e1096ce7684b84e5b3229a") Inserted multiple documents: [ObjectID("63e1096ce7684b84e5b3229b") ObjectID("63e1096ce7684b84e5b3229c")] Found a single document: {Name:小蘭 Age:10}
可以看到程式連線到mongodb,並且寫入了三條資料,查詢了一次。
go mod 相關命令
在go mod模組管理機制出現之前使用get和install命令管理模組。
go get
是下載外掛 和 go install
下載外掛並編譯程式。這些是1.12版本之前的模組管理方法,已經棄用
到此這篇關於一文帶你深入探索Golang操作mongodb的方法的文章就介紹到這了,更多相關Golang操作mongodb內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45