Skip to content

Commit d9718cc

Browse files
authored
Updated readme (#640)
Readme updates
1 parent 4929851 commit d9718cc

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

README.md

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
2-
---
3-
4-
## Note to Hazelcast Go Client for Hazelcast 3 Users
5-
6-
Support for Hazelcast 3.x ended on April 9th 2021, so Go client for Hazelcast 3 will not be updated.
7-
You can still use Go client for Hazelcast 3 by migrating your project to use Go modules and adding the following in your `go.mod` file:
8-
```
9-
require github.com/hazelcast/hazelcast-go-client v0.6.0
10-
```
11-
121
# Hazelcast Go Client
132

143
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.
154

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.
176

187
## Sample Code
198

@@ -59,13 +48,14 @@ func main() {
5948
## Features
6049

6150
* 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, Set and Topic.
51+
* Additional data structures and simple messaging constructs such as Replicated Map, Queue, List, PNCounter, Set, Topic and others.
6352
* Support for serverless and traditional web service architectures with Unisocket and Smart operation modes.
6453
* Go context support for all distributed data structures.
6554
* Hazelcast Cloud integration.
6655
* External smart client discovery.
6756
* Hazelcast Management Center integration.
6857
* Ability to listen to client lifecycle, cluster state, and distributed data structure events.
58+
* And [more](https://hazelcast.com/clients/go/#client-features)...
6959

7060
## Install
7161

@@ -77,7 +67,7 @@ Requirements:
7767
In your Go module enabled project, add a dependency to `github.com/hazelcast/hazelcast-go-client`:
7868
```shell
7969
# 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
8171
```
8272

8373
## Quick Start
@@ -129,7 +119,7 @@ client, err := hazelcast.StartNewClientWithConfig(ctx, config)
129119

130120
## Documentation
131121

132-
Hazelcast Go Client documentation is hosted at [pkg.go.dev](https://pkg.go.dev/github.com/hazelcast/hazelcast-go-client@v1.0.0).
122+
Hazelcast Go Client documentation is hosted at [pkg.go.dev](https://pkg.go.dev/github.com/hazelcast/hazelcast-go-client@v1.1.0).
133123

134124
You can view the documentation locally by using godoc:
135125
```

0 commit comments

Comments
 (0)