RedisJSON 2.0 release notes
Index JSON documents. JSONPath support. Commands operate on multiple paths.
Requirements
RedisJSON v2.0.11 requires:
- Minimum Redis compatibility version (database): 6.0.0
- Minimum Redis Enterprise Software version (cluster): 6.0.0
v2.0.11 (July 2022)
This is a maintenance release for RedisJSON 2.0.
Update urgency: LOW
- No need to upgrade unless there are new features you want to use.
Details:
-
Improvements:
- Minor documentation changes and internal build improvements
v2.0.9 (June 2022)
This is a maintenance release for RedisJSON 2.0.
Update urgency: LOW
: No need to upgrade unless there are new features you want to use.
Details:
-
Bug fixes:
- #721 Skip String and Boolean scalars in
JSON.CLEAR
(MOD-3136)
- #721 Skip String and Boolean scalars in
-
Improvements:
- #709 Allow internal JSON API's
getdouble
to succeed with integer values
- #709 Allow internal JSON API's
v2.0.8 (April 2022)
This is a maintenance release for RedisJSON 2.0.
Update urgency: LOW
- No need to upgrade unless there are new features you want to use.
Details:
v2.0.7 (March 2022)
This is a maintenance release for RedisJSON 2.0.
Update urgency: LOW
- No need to upgrade unless there are new features you want to use.
Details:
-
Improvements:
-
Bug fixes:
v2.0.6 (December 2021)
This is a maintenance release for RedisJSON 2.0.
Update urgency: MODERATE
: Program an upgrade of the server, but it's not urgent.
This patch neutralizes the increased memory consumption from v1 to v2.
Details:
v2.0.5 (December 2021)
This is a maintenance release for RedisJSON 2.0.
Details:
- Bug fixes:
v2.0.4 (November 2021)
This is the General Availability release of RedisJSON 2.0.
Headlines
RedisJSON is a high-performance JSON document store that allows developers to build modern applications. It stores and processes JSON in-memory, supporting millions of operations per second with sub-millisecond response times. The combination of RediSearch
, native indexing, querying, and full-text search of JSON documents allows developers to create secondary indexes and query data at lightning speed.
Indexing JSON documents
Using RediSearch, it is now possible to index, query, and search JSON documents, gaining full-text search capabilities and document retrieving based on their content.
To do so, you must install both modules, RedisJSON
and RediSearch
, on the same database.
Support of JSON Path
The commands support JSONPath as specified in the original specifications.
The legacy path syntax is still supported.
Commands operate on multiple paths
A JSONPath
query may resolve to several paths. Every command supports multiple paths and applies the operation to all the encountered paths.
Notice that the output of the commands evolved to provide multiple results according to the number of paths impacted.
Details
-
Enhancements
-
Bug fixes