Skip to content

Commit

Permalink
added comemnts
Browse files Browse the repository at this point in the history
  • Loading branch information
cyip10 committed Jun 28, 2024
1 parent f1f26f9 commit 70c68cc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ dependencies {

Maven (AARCH_64) specific.
- **IMPORTANT** must include a `classifier` block. Please use this dependency block instead and add it to the pom.xml file.
```xml
```java
<dependency>
<groupId>software.amazon.glide</groupId>
<artifactId>glide-osx-aarch_64</artifactId>
<classifier>osx-aarch_64</classifier>
<version>0.4.2</version>
<groupId>software.amazon.glide</groupId>
<artifactId>glide-for-redis</artifactId>
<classifier>osx-aarch_64</classifier>
<version>0.4.3</version>
</dependency>
```

Expand All @@ -140,7 +140,7 @@ import glide.api.models.configuration.RedisClientConfiguration;
import java.util.concurrent.ExecutionException;
import static glide.api.models.GlideString.gs;

# Run this code in the Main file. Include InterruptedException and ExecutionException handling.
// Run this code in the Main file. Include InterruptedException and ExecutionException handling.

public static void main(String[] args) throws InterruptedException, ExecutionException {

Expand Down Expand Up @@ -177,7 +177,7 @@ import glide.api.models.configuration.RedisClusterClientConfiguration;
import java.util.concurrent.ExecutionException;
import static glide.api.models.GlideString.gs;

# Run this code in the Main file. Include InterruptedException and ExecutionException handling.
// Run this code in the Main file. Include InterruptedException and ExecutionException handling.

String host = "localhost";
Integer port = 6379;
Expand Down

0 comments on commit 70c68cc

Please sign in to comment.