generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
75 lines (63 loc) · 1.63 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
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright (c) 2022, 2024 Oracle and/or its affiliates.
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
/*
Package main shows how to carry out basic operations against a NamedMap with primitive types.
*/
package main
import (
"context"
"fmt"
"github.com/oracle/coherence-go-client/v2/coherence"
)
func main() {
var (
value *string
ctx = context.Background()
size int
)
// create a new Session to the default gRPC port of 1408 using plain text
session, err := coherence.NewSession(ctx, coherence.WithPlainText())
if err != nil {
panic(err)
}
defer session.Close()
// create a new NamedMap with key of int and value of string
namedMap, err := coherence.GetNamedMap[int, string](session, "my-map")
if err != nil {
panic(err)
}
fmt.Println("Put key 1, value one")
// put a new key / value
if _, err = namedMap.Put(ctx, 1, "one"); err != nil {
panic(err)
}
// get the value for the given key
if value, err = namedMap.Get(ctx, 1); err != nil {
panic(err)
}
fmt.Println("Value for key 1 is", *value)
if size, err = namedMap.Size(ctx); err != nil {
panic(err)
}
fmt.Println("Cache size is", size)
// update the value for key 1
if _, err = namedMap.Put(ctx, 1, "ONE"); err != nil {
panic(err)
}
// get the updated value for the given key
if value, err = namedMap.Get(ctx, 1); err != nil {
panic(err)
}
fmt.Println("Updated value is", *value)
fmt.Println("Remove key", 1)
if _, err = namedMap.Remove(ctx, 1); err != nil {
panic(err)
}
if size, err = namedMap.Size(ctx); err != nil {
panic(err)
}
fmt.Println("Cache size is", size)
}