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

Realign Side-Bar contents for Redis documentation #23849

Merged
merged 1 commit into from
Feb 22, 2022
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
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/redis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ Notice there's an extra bit in the key (the `second` segment).
The syntax is as follows: `quarkus.redis.[optional name.][redis configuration property]`.
If the name is omitted, it configures the default client.

=== Named Redis client Injection
== Named Redis Client Injection

When using multiple clients, you can select the client to inject using the `io.quarkus.redis.client.RedisClientName` qualifier.
Using the above properties to configure three different clients, you can also inject each one as follows:
Expand All @@ -569,7 +569,7 @@ RedisClient redisClient2;
ReactiveRedisClient reactiveClient2;
----

=== Providing Redis Hosts Programmatically
== Providing Redis Hosts Programmatically

The `RedisHostsProvider` programmatically provides redis hosts. This allows for configuration of properties like redis connection password coming from other sources.

Expand Down Expand Up @@ -598,7 +598,7 @@ The host provider can be used to configure the redis client like shown below
quarkus.redis.hosts-provider-name=hosts-provider
----

=== Creating Clients Programmatically
== Creating Clients Programmatically

The `RedisClient` and `ReactiveRedisClient` provide factory methods to create clients programmatically.
The client to be created are configured using the usual <<config-reference,Redis configuration>>.
Expand Down