You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ This project provides both the [core Spring Data Valkey library](spring-data-val
11
11
* Connection package as low-level abstraction across multiple drivers ([Valkey GLIDE](https://github.com/valkey-io/valkey-glide), [Lettuce](https://github.com/lettuce-io/lettuce-core), and [Jedis](https://github.com/redis/jedis)).
12
12
* Exception translation to Spring's portable Data Access exception hierarchy for driver exceptions.
13
13
*`ValkeyTemplate` that provides a high level abstraction for performing various Valkey operations, exception translation and serialization support.
14
-
* Pubsub support (such as a MessageListenerContainer for message-driven POJOs). Available with Jedis and Lettuce, with Valkey GLIDE support WIP for version 1.0.0.
14
+
* Pubsub support (such as a MessageListenerContainer for message-driven POJOs).
15
15
* OpenTelemetry instrumentation support when using the Valkey GLIDE client for emitting traces and metrics for Valkey operations.
16
16
* Valkey Sentinel support is currently available in Jedis and Lettuce, while support in Valkey GLIDE is planned for a future release.
17
17
* Reactive API using Lettuce.
@@ -30,10 +30,10 @@ This project provides both the [core Spring Data Valkey library](spring-data-val
30
30
* Support for multiple Valkey drivers ([Valkey GLIDE](https://github.com/valkey-io/valkey-glide), [Lettuce](https://github.com/lettuce-io/lettuce-core), and [Jedis](https://github.com/redis/jedis)).
31
31
* Connection pooling configuration for all supported clients.
32
32
* Valkey Cluster auto-configuration and support.
33
-
* Property-based OpenTelemetry configuration for Valkey GLIDE, enabling automatic trace and metric export without application code changes.
34
33
* Valkey Sentinel configuration support (Lettuce and Jedis only).
35
34
* SSL/TLS connection support with Spring Boot SSL bundles.
36
35
* Spring Boot Actuator health indicators and metrics for Valkey connections.
36
+
* Property-based OpenTelemetry configuration for Valkey GLIDE, enabling automatic trace and metric export without application code changes.
37
37
*`@DataValkeyTest` slice test annotation for focused Valkey testing.
38
38
* Testcontainers integration with `@ServiceConnection` annotation.
39
39
* Docker Compose support for automatic service detection and startup.
Copy file name to clipboardExpand all lines: examples/boot-telemetry/README.md
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@ This example demonstrates using **Spring Boot** with **Spring Data Valkey**, bac
4
4
5
5
On startup, the application executes a small number of Valkey `SET` / `GET` commands using `StringValkeyTemplate`. Each command is automatically instrumented by GLIDE and exported via OpenTelemetry.
6
6
7
-
---
8
-
9
7
## How it works
10
8
11
9
- Spring Boot auto-configures all Valkey beans
@@ -16,17 +14,28 @@ On startup, the application executes a small number of Valkey `SET` / `GET` comm
16
14
17
15
No explicit OpenTelemetry SDK or client setup code is required.
Copy file name to clipboardExpand all lines: spring-data-valkey/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Spring Data Valkey provides Spring Data integration for [Valkey](https://valkey.
7
7
* Connection package as low-level abstraction across multiple drivers ([Valkey GLIDE](https://github.com/valkey-io/valkey-glide), [Lettuce](https://github.com/lettuce-io/lettuce-core), and [Jedis](https://github.com/redis/jedis))
8
8
* Exception translation to Spring's portable Data Access exception hierarchy
9
9
*`ValkeyTemplate` for high-level abstraction with serialization support
10
-
* Pubsub support with MessageListenerContainer (Jedis and Lettuce, GLIDE support planned)
10
+
* Pubsub support with MessageListenerContainer
11
11
* Valkey Sentinel support (Jedis and Lettuce, GLIDE support planned)
12
12
* Reactive API using Lettuce
13
13
* JDK, String, JSON and Spring Object/XML mapping serializers
0 commit comments