-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
64 lines (54 loc) · 1.28 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
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"time"
gocb "github.com/couchbase/gocb/v2"
)
// #tag::connect[]
func main() {
cluster, err := gocb.Connect(
"localhost",
gocb.ClusterOptions{
Username: "Administrator",
Password: "password",
})
if err != nil {
panic(err)
}
// #end::connect[]
// #tag::bucket[]
// get a bucket reference
bucket := cluster.Bucket("bucket-name")
// We wait until the bucket is definitely connected and setup.
err = bucket.WaitUntilReady(5*time.Second, nil)
if err != nil {
panic(err)
}
// #end::bucket[]
// #tag::collection[]
// get a collection reference
collection := bucket.DefaultCollection()
// for a named collection and scope
// scope := bucket.Scope("my-scope")
// collection := scope.Collection("my-collection")
// #end::collection[]
// #tag::upsert-get[]
// Upsert Document
upsertData := map[string]string{"name": "mike"}
upsertResult, err := collection.Upsert("my-document", upsertData, &gocb.UpsertOptions{})
if err != nil {
panic(err)
}
fmt.Println(upsertResult.Cas())
// Get Document
getResult, err := collection.Get("my-document", &gocb.GetOptions{})
if err != nil {
panic(err)
}
var myContent interface{}
if err := getResult.Content(&myContent); err != nil {
panic(err)
}
fmt.Println(myContent)
// #end::upsert-get[]
}