Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links in java README.md #1897

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ macOS:
## Layout of Java code
The Java client contains the following parts:

1. `src`: Rust dynamic library FFI to integrate with [GLIDE core library](../glide-core/README.md).
1. `src`: Rust dynamic library FFI to integrate with [GLIDE core library](../glide-core/).
2. `client`: A Java-wrapper around the GLIDE core rust library and unit tests for it.
3. `examples`: An example app to test the client against a Valkey localhost.
4. `benchmark`: A dedicated benchmarking tool designed to evaluate and compare the performance of GLIDE for Valkey and other Java clients.
Expand Down Expand Up @@ -238,7 +238,7 @@ public class Main {
```

### Accessing tests
For more examples, you can refer to the test folder [unit tests](./java/client/src/test/java/glide/api) and [integration tests](./java/integTest/src/test/java/glide).
For more examples, you can refer to the test folder [unit tests](./client/src/test/java/glide/api) and [integration tests](./integTest/src/test/java/glide).

### Benchmarks

Expand Down
Loading