generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
61 lines (51 loc) · 1.35 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
/*
* 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 run queries against a NamedMap or NamedCache using keys.
*/
package main
import (
"context"
"fmt"
"github.com/oracle/coherence-go-client/v2/coherence"
)
type Person struct {
ID int `json:"id"`
Name string `json:"name"`
Age int `json:"age"`
}
func main() {
var ctx = context.Background()
// 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()
namedMap, err := coherence.GetNamedMap[int, Person](session, "people")
if err != nil {
panic(err)
}
_ = namedMap.Clear(ctx)
fmt.Println("Adding 10 random people for querying against keys")
for i := 1; i <= 10; i++ {
p := Person{ID: i, Name: fmt.Sprintf("Name-%d", i), Age: 15 + i}
_, err = namedMap.Put(ctx, p.ID, p)
if err != nil {
panic(err)
}
}
size, _ := namedMap.Size(ctx)
fmt.Println("Cache size is", size)
fmt.Println("Retrieve the people with keys 1, 4 and 5")
ch := namedMap.GetAll(ctx, []int{1, 4, 5})
for result := range ch {
if result.Err != nil {
panic(err)
}
fmt.Println("Key:", result.Key, "Value:", result.Value)
}
}