You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hazelcast is an open-source distributed in-memory data store and computation platform that provides a wide variety of distributed data structures and concurrency primitives.
15
4
16
-
Hazelcast Go client is a way to communicate to Hazelcast IMDG clusters and access the cluster data.
5
+
Hazelcast Go client is a way to communicate to Hazelcast 4 and 5 clusters and access the cluster data.
17
6
18
7
## Sample Code
19
8
@@ -59,13 +48,14 @@ func main() {
59
48
## Features
60
49
61
50
* Distributed, partitioned and queryable in-memory key-value store implementation, called Map.
62
-
* Additional data structures and simple messaging constructs such as Replicated Map, Queue, List, PNCounter, Setand Topic.
51
+
* Additional data structures and simple messaging constructs such as Replicated Map, Queue, List, PNCounter, Set, Topic and others.
63
52
* Support for serverless and traditional web service architectures with Unisocket and Smart operation modes.
64
53
* Go context support for all distributed data structures.
65
54
* Hazelcast Cloud integration.
66
55
* External smart client discovery.
67
56
* Hazelcast Management Center integration.
68
57
* Ability to listen to client lifecycle, cluster state, and distributed data structure events.
58
+
* And [more](https://hazelcast.com/clients/go/#client-features)...
69
59
70
60
## Install
71
61
@@ -77,7 +67,7 @@ Requirements:
77
67
In your Go module enabled project, add a dependency to `github.com/hazelcast/hazelcast-go-client`:
78
68
```shell
79
69
# Depend on a specific release
80
-
$ go get github.com/hazelcast/hazelcast-go-client@v1.0.0
70
+
$ go get github.com/hazelcast/hazelcast-go-client@v1.1.0
0 commit comments