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
55Distributed 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
176176With 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
182182Now you can start using Olric:
@@ -192,7 +192,7 @@ See [Configuration](#configuration) section to create your cluster properly.
192192You 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
198198This command will pull olric-server Docker image and run a new Olric Instance. You should know that the container exposes
214214With 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
220220Let's create a cluster with the following:
@@ -283,7 +283,7 @@ this repository. `EmbeddedClient` provides a client implementation for [embedded
283283Obviously, you can use `ClusterClient` for your embedded-member deployments. But it's good to use `EmbeddedClient` provides
284284a 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
12631263func 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
13561356func 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
14471447func 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
15171517func 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
16261626func 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