From a53385c59b3baa7a1ec335d5e96a10584b511f77 Mon Sep 17 00:00:00 2001 From: vuhp Date: Wed, 31 May 2023 01:55:06 +0800 Subject: [PATCH] Change reference from Redis in redis.adoc to Spring Data Redis. Closes #2590 --- src/main/asciidoc/reference/redis.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/redis.adoc b/src/main/asciidoc/reference/redis.adoc index b46f7bcc4..7ee170d91 100644 --- a/src/main/asciidoc/reference/redis.adoc +++ b/src/main/asciidoc/reference/redis.adoc @@ -527,7 +527,7 @@ public void useCallback() { From the framework perspective, the data stored in Redis is only bytes. While Redis itself supports various types, for the most part, these refer to the way the data is stored rather than what it represents. It is up to the user to decide whether the information gets translated into strings or any other objects. -In Spring Data, the conversion between the user (custom) types and raw data (and vice-versa) is handled Redis in the `org.springframework.data.redis.serializer` package. +In Spring Data, the conversion between the user (custom) types and raw data (and vice-versa) is handled by Spring Data Redis in the `org.springframework.data.redis.serializer` package. This package contains two types of serializers that, as the name implies, take care of the serialization process: