@@ -26,13 +26,10 @@ The beta release of GLIDE for Valkey was tested on Intel x86_64 using Ubuntu 22.
26
26
27
27
GLIDE for Valkey is supported in Ubuntu, CentOS, and MacOS.
28
28
29
- ## Java supported version
30
- JDK 11+.
31
-
32
29
The Java client contains the following parts:
33
30
34
31
1 . ` src ` : Rust dynamic library FFI to integrate with [ GLIDE core library] ( https://github.com/aws/glide-for-redis/blob/main/glide-core/README.md ) .
35
- 2 . ` client ` : A Java-wrapper around the [ GLIDE core rust library] ( ../glide-core/README.md ) and unit tests for it.
32
+ 2 . ` client ` : A Java-wrapper around the GLIDE core rust library and unit tests for it.
36
33
3 . ` examples ` : An examples app to test the client against a Valkey localhost.
37
34
4 . ` benchmark ` : A dedicated benchmarking tool designed to evaluate and compare the performance of GLIDE for Valkey and other Java clients.
38
35
5 . ` integTest ` : An integration test sub-project for API and E2E testing.
@@ -43,17 +40,6 @@ The Java client contains the following parts:
43
40
44
41
At the moment, the Java client must be built from source.
45
42
46
- ### Build from source
47
-
48
- Software Dependencies:
49
-
50
- - JDK 11+
51
-
52
- Please also consider installing the following packages to build [ GLIDE core rust library] ( ../glide-core/README.md ) :
53
-
54
- - openssl
55
- - openssl-dev
56
-
57
43
#### Prerequisites
58
44
59
45
** Protoc installation**
@@ -109,7 +95,7 @@ Once set up, you can run the basic examples.
109
95
Gradle:
110
96
- Copy the snippet and paste it in the ` build.gradle ` dependencies section.
111
97
Example shown below is for ` glide-osx-aarch_64 ` .
112
- ``` bash
98
+ ``` groovy
113
99
dependencies {
114
100
testImplementation platform('org.junit:junit-bom:5.10.0')
115
101
testImplementation 'org.junit.jupiter:junit-jupiter'
@@ -179,6 +165,7 @@ public class Main {
179
165
180
166
### Cluster Valkey:
181
167
``` java
168
+ // You can run this example code in the Main.
182
169
import glide.api.RedisClusterClient ;
183
170
import glide.api.models.configuration.NodeAddress ;
184
171
import glide.api.models.configuration.RedisClusterClientConfiguration ;
0 commit comments