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
* Convert wiki to markdown docs
* Overhaul docs and fix obvious conversion issues
* Update docs workflow
* Fix links and include main README
* Update TLS section
* Fix more links
* Remove ascii docs and maven profile
* Fix spelling
* Build docs only from the main branch
*Gitter (chat): [](https://gitter.im/lettuce-io/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Copy file name to clipboardExpand all lines: README.md
+20-22Lines changed: 20 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,18 +16,18 @@ Supports advanced Redis features such as Sentinel, Cluster, Pipelining, Auto-Rec
16
16
17
17
This version of Lettuce has been tested against the latest Redis source-build.
18
18
19
-
*[synchronous](https://github.com/lettuce-io/lettuce-core/wiki/Basic-usage), [asynchronous](https://github.com/lettuce-io/lettuce-core/wiki/Asynchronous-API-%284.0%29) and [reactive](https://github.com/lettuce-io/lettuce-core/wiki/Reactive-API-%285.0%29) usage
*[CDI](https://github.com/lettuce-io/lettuce-core/wiki/CDI-Support) and [Spring](https://github.com/lettuce-io/lettuce-core/wiki/Spring-Support) integration
25
-
*[Codecs](https://github.com/lettuce-io/lettuce-core/wiki/Codecs) (for UTF8/bit/JSON etc. representation of your data)
* Support for [Native Transports](https://github.com/lettuce-io/lettuce-core/wiki/Native-Transports)
19
+
*[synchronous](https://redis.github.io/lettuce/user-guide/connecting-redis/#basic-usage), [asynchronous](https://redis.github.io/lettuce/user-guide/async-api/) and [reactive](https://redis.github.io/lettuce/user-guide/reactive-api/) usage
* Support for [Native Transports](https://redis.github.io/lettuce/advanced-usage/#native-transports)
28
28
* Compatible with Java 8++ (implicit automatic module w/o descriptors)
29
29
30
-
See the [reference documentation](https://lettuce.io/docs/) and [Wiki](https://github.com/lettuce-io/lettuce-core/wiki) for more details.
30
+
See the [reference documentation](https://redis.github.io/lettuce/) and [API Reference](https://www.javadoc.io/doc/io.lettuce/lettuce-core/latest/index.html) for more details.
31
31
32
32
## How do I Redis?
33
33
@@ -46,27 +46,25 @@ See the [reference documentation](https://lettuce.io/docs/) and [Wiki](https://g
46
46
Communication
47
47
---------------
48
48
49
-
*[GitHub Discussions](https://github.com/lettuce-io/lettuce-core/discussions) (Q&A, Ideas, General discussion)
49
+
*[GitHub Discussions](https://github.com/redis/lettuce/discussions) (Q&A, Ideas, General discussion)
Binaries and dependency information for Maven, Ivy, Gradle and others can be found at http://search.maven.org.
68
66
69
-
Releases of lettuce are available in the Maven Central repository. Take also a look at the [Releases](https://github.com/lettuce-io/lettuce-core/releases).
67
+
Releases of lettuce are available in the Maven Central repository. Take also a look at the [Releases](https://github.com/redis/lettuce/releases).
70
68
71
69
Example for Maven:
72
70
@@ -114,7 +112,7 @@ to the lowercase Redis command name. Complex commands with multiple modifiers
114
112
that change the result type include the CamelCased modifier as part of the
115
113
command name, e.g. zrangebyscore and zrangebyscoreWithScores.
116
114
117
-
See [Basic usage](https://github.com/lettuce-io/lettuce-core/wiki/Basic-usage) for further details.
115
+
See [Basic usage](https://redis.github.io/lettuce/user-guide/connecting-redis/#basic-usage) for further details.
118
116
119
117
Asynchronous API
120
118
------------------------
@@ -131,7 +129,7 @@ set.get() == "OK"
131
129
get.get() =="value"
132
130
```
133
131
134
-
See [Asynchronous API](https://github.com/lettuce-io/lettuce-core/wiki/Asynchronous-API-%284.0%29) for further details.
132
+
See [Asynchronous API](https://redis.github.io/lettuce/user-guide/async-api/) for further details.
135
133
136
134
Reactive API
137
135
------------------------
@@ -147,7 +145,7 @@ set.subscribe();
147
145
get.block() =="value"
148
146
```
149
147
150
-
See [Reactive API](https://github.com/lettuce-io/lettuce-core/wiki/Reactive-API-%285.0%29) for further details.
148
+
See [Reactive API](https://redis.github.io/lettuce/user-guide/reactive-api/) for further details.
151
149
152
150
Pub/Sub
153
151
-------
@@ -167,7 +165,7 @@ are configured using a ```Makefile```. Tests run by default against Redis `unsta
Github is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository.
197
-
Create Github tickets for bugs and new features and comment on the ones that you are interested in and take a look into [CONTRIBUTING.md](https://github.com/lettuce-io/lettuce-core/blob/main/.github/CONTRIBUTING.md)
195
+
Create Github tickets for bugs and new features and comment on the ones that you are interested in and take a look into [CONTRIBUTING.md](https://github.com/redis/lettuce/blob/main/.github/CONTRIBUTING.md)
0 commit comments