-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
56 lines (49 loc) · 1.11 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"context"
"log"
"time"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
const (
dbName = "test"
userCollection = "users"
)
func main() {
ctx := context.Background()
client := getClient()
defer client.Disconnect(ctx)
db := client.Database(dbName)
transaction(ctx, db)
}
func getClient() *mongo.Client {
clientOption := options.Client()
clientOption.ApplyURI("mongodb://test:[email protected]:27017")
clientOption.SetReplicaSet("rs1")
client, err := mongo.NewClient(clientOption)
if err != nil {
log.Fatal(err)
}
ctx, _ := context.WithTimeout(context.Background(), 30*time.Second)
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
err = client.Ping(ctx, readpref.Primary())
if err != nil {
log.Fatal(err)
}
return client
}
func listDatabases(ctx context.Context, client *mongo.Client) {
res, err := client.ListDatabases(ctx, bson.M{})
if err != nil {
log.Fatalln()
}
for _, database := range res.Databases {
log.Println(database.Name)
}
}