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

DOC-3547: gather Java clients under Java 'folder' #2700

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions docs/connect/clients/java/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "Connect with Redis Java clients"
linkTitle: "Java clients"
description: Connect your application to a Redis database using Java and try an example
weight: 3
---

You have two choices of Java clients that you can use with Redis:

- Jedis, for synchronous applications.
- Lettuce, for asynchronous and reactive applications.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Java guide"
linkTitle: "Java"
description: Connect your Java application to a Redis database
weight: 3
weight: 1
aliases:
- /docs/clients/java/
- /docs/redis-clients/java/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Lettuce guide"
linkTitle: "Lettuce"
description: Connect your Lettuce application to a Redis database
weight: 3
weight: 2
---

Install Redis and the Redis client, then connect your Lettuce application to a Redis database.
Expand Down
Loading