-
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75d5a8e
commit a2126a3
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,10 @@ The current production version is [v0.5.0](https://github.com/buraksezer/olric/t | |
|
||
### About versions | ||
|
||
Olric v0.4 and previous versions use *Olric Binary Protocol*, v0.5 uses [Redis serialization protocol](https://redis.io/docs/reference/protocol-spec/) for communication and the API was significantly changed. | ||
Olric v0.4 and previous versions use *Olric Binary Protocol*, v0.5.x and later use [Redis serialization protocol](https://redis.io/docs/reference/protocol-spec/) for communication and the API was significantly changed. | ||
Olric v0.4.x tree is going to receive bug fixes and security updates forever, but I would recommend considering an upgrade to the new version. | ||
|
||
This document only covers `v0.5`. See v0.4.x documents [here](https://github.com/buraksezer/olric/tree/release/v0.4.0#olric-). | ||
This document only covers `v0.5.x` and later. See v0.4.x documents [here](https://github.com/buraksezer/olric/tree/release/v0.4.0#olric-). | ||
|
||
## At a glance | ||
|
||
|
@@ -174,7 +174,7 @@ You also feel free to open an issue on GitHub to report bugs and share feature r | |
With a correctly configured Golang environment: | ||
|
||
``` | ||
go install github.com/buraksezer/olric/cmd/[email protected]-rc.1 | ||
go install github.com/buraksezer/olric/cmd/[email protected] | ||
``` | ||
|
||
Now you can start using Olric: | ||
|
@@ -190,7 +190,7 @@ See [Configuration](#configuration) section to create your cluster properly. | |
You can launch `olricd` Docker container by running the following command. | ||
|
||
```bash | ||
docker run -p 3320:3320 olricio/olricd:v0.5.0-beta.2 | ||
docker run -p 3320:3320 olricio/olricd:v0.5.0 | ||
``` | ||
|
||
This command will pull olricd Docker image and run a new Olric Instance. You should know that the container exposes | ||
|
@@ -212,7 +212,7 @@ OK | |
With olricd, you can create an Olric cluster with a few commands. This is how to install olricd: | ||
|
||
```bash | ||
go install github.com/buraksezer/olric/cmd/[email protected]-rc.1 | ||
go install github.com/buraksezer/olric/cmd/[email protected] | ||
``` | ||
|
||
Let's create a cluster with the following: | ||
|
@@ -281,7 +281,7 @@ this repository. `EmbeddedClient` provides a client implementation for [embedded | |
Obviously, you can use `ClusterClient` for your embedded-member deployments. But it's good to use `EmbeddedClient` provides | ||
a better performance due to localization of the queries. | ||
|
||
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/buraksezer/[email protected]-rc.1) | ||
See the client documentation on [pkg.go.dev](https://pkg.go.dev/github.com/buraksezer/[email protected]) | ||
|
||
## Cluster Events | ||
|
||
|