DATAREDIS-594 - Update "what’s new" section in reference documentation.
This commit is contained in:
@@ -6,9 +6,14 @@ New and noteworthy in the latest releases.
|
||||
[[new-in-1.8.0]]
|
||||
== New in Spring Data Redis 1.8
|
||||
|
||||
* Upgrade to Jedis 2.9.
|
||||
* Upgrade to `Lettuce` 4.2 (Note: Lettuce 4.2 requires Java 8).
|
||||
* Support for Redis http://redis.io/commands#geo[GEO] commands.
|
||||
* Support for Geospatial Indexes using Spring Data Repository abstractions (see <<redis.repositories.indexes.geospatial>>).
|
||||
* Upgrade to `Lettuce` 4.2. Lettuce 4.2 requires Java 8.
|
||||
* `MappingRedisConverter` based `HashMapper` implementation (see <<redis.hashmappers.root>>).
|
||||
* Support for `PartialUpdate` in repository support (see <<redis.repositories.partial-updates>>).
|
||||
* SSL support for connections to Redis cluster.
|
||||
* Support for `client name` via `ConnectionFactory` when using Jedis.
|
||||
|
||||
[[new-in-1.7.0]]
|
||||
== New in Spring Data Redis 1.7
|
||||
|
||||
@@ -353,6 +353,7 @@ public void useCallback() {
|
||||
|
||||
From the framework perspective, the data stored in Redis is just 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. The conversion between the user (custom) types and raw data (and vice-versa) is handled in Spring Data Redis through the `RedisSerializer` interface (package `org.springframework.data.redis.serializer`) which as the name implies, takes care of the serialization process. Multiple implementations are available out of the box, two of which have been already mentioned before in this documentation: the `StringRedisSerializer` and the `JdkSerializationRedisSerializer`. However one can use `OxmSerializer` for Object/XML mapping through Spring 3 http://docs.spring.io/spring/docs/current/spring-framework-reference/html/oxm.html[OXM] support or either `JacksonJsonRedisSerializer`, `Jackson2JsonRedisSerializer` or `GenericJackson2JsonRedisSerializer` for storing data in http://en.wikipedia.org/wiki/JSON[JSON] format. Do note that the storage format is not limited only to values - it can be used for keys, values or hashes without any restrictions.[[redis:serializer]]
|
||||
|
||||
[[redis.hashmappers.root]]
|
||||
== Hash mapping
|
||||
|
||||
Data can be stored using various data structures within Redis. You already learned about `Jackson2JsonRedisSerializer` which can convert objects
|
||||
|
||||
Reference in New Issue
Block a user