Skip to content

Commit 40ffe2f

Browse files
committed
Update Olric references and examples to v0.6.x
Updated all references in the documentation and code examples from Olric v0.5.x to v0.6.x. This includes Go installation commands, Docker commands, pkg.go.dev links, and version-related comments for consistency with the latest release.
1 parent 10841f4 commit 40ffe2f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Olric [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Olric%3A+Distributed+and+in-memory+key%2Fvalue+database.+It+can+be+used+both+as+an+embedded+Go+library+and+as+a+language-independent+service.+&url=https://github.com/olric-data/olric/&hashtags=golang,distributed,database)
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/olric-data/olric/.svg)](https://pkg.go.dev/github.com/olric-data/olric/) [![Go Report Card](https://goreportcard.com/badge/github.com/olric-data/olric/)](https://goreportcard.com/report/github.com/olric-data/olric/) [![Discord](https://img.shields.io/discord/721708998021087273.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/ahK7Vjr8We) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/olric-data/olric/.svg)](https://pkg.go.dev/github.com/olric-data/olric/) [![Go Report Card](https://goreportcard.com/badge/olric-data/olric)](https://goreportcard.com/report/github.com/olric-data/olric/) [![Discord](https://img.shields.io/discord/721708998021087273.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/ahK7Vjr8We) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44

55
Distributed In-Memory Cache & Key/Value Store
66

@@ -176,7 +176,7 @@ Software doesn't maintain itself. If you need support on complex topics or reque
176176
With a correctly configured Golang environment:
177177

178178
```
179-
go install github.com/olric-data/olric/cmd/olric-server@v0.5.7
179+
go install github.com/olric-data/olric/cmd/olric-server@v0.6.1
180180
```
181181

182182
Now you can start using Olric:
@@ -192,7 +192,7 @@ See [Configuration](#configuration) section to create your cluster properly.
192192
You can launch `olric-server` Docker container by running the following command.
193193

194194
```bash
195-
docker run -p 3320:3320 olricio/olric-server:v0.5.4
195+
docker pull ghcr.io/olric-data/olric:latest
196196
```
197197

198198
This command will pull olric-server Docker image and run a new Olric Instance. You should know that the container exposes
@@ -214,7 +214,7 @@ OK
214214
With olric-server, you can create an Olric cluster with a few commands. This is how to install olric-server:
215215

216216
```bash
217-
go install github.com/olric-data/olric/cmd/olric-server@v0.5.7
217+
go install github.com/olric-data/olric/cmd/olric-server@v0.6.1
218218
```
219219

220220
Let's create a cluster with the following:
@@ -283,7 +283,7 @@ this repository. `EmbeddedClient` provides a client implementation for [embedded
283283
Obviously, you can use `ClusterClient` for your embedded-member deployments. But it's good to use `EmbeddedClient` provides
284284
a better performance due to localization of the queries.
285285

286-
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/olric-data/olric/@v0.5.7)
286+
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/olric-data/olric/@v0.6.1)
287287

288288
## Cluster Events
289289

@@ -1261,7 +1261,7 @@ import (
12611261
)
12621262

12631263
func main() {
1264-
// Sample for Olric v0.5.x
1264+
// Sample for Olric v0.6.x
12651265

12661266
// Deployment scenario: embedded-member
12671267
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1354,7 +1354,7 @@ import (
13541354
)
13551355

13561356
func main() {
1357-
// Sample for Olric v0.5.x
1357+
// Sample for Olric v0.6.x
13581358

13591359
// Deployment scenario: embedded-member
13601360
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1445,7 +1445,7 @@ import (
14451445
)
14461446

14471447
func main() {
1448-
// Sample for Olric v0.5.x
1448+
// Sample for Olric v0.6.x
14491449

14501450
// Deployment scenario: client-server
14511451

@@ -1515,7 +1515,7 @@ import (
15151515
)
15161516

15171517
func main() {
1518-
// Sample for Olric v0.5.x
1518+
// Sample for Olric v0.6.x
15191519

15201520
// Deployment scenario: embedded-member
15211521
// This creates a single-node Olric cluster. It's good enough for experimenting.
@@ -1624,7 +1624,7 @@ import (
16241624
)
16251625

16261626
func main() {
1627-
// Sample for Olric v0.5.x
1627+
// Sample for Olric v0.6.x
16281628

16291629
// Deployment scenario: client-server
16301630

0 commit comments

Comments
 (0)