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
For more information on the JSON Path syntax used to query JSON documents in Redis, see the [documentation](https://oss.redis.com/redisjson/path/).
288
+
For more information on the JSON Path syntax used to query JSON documents in Redis, see the [documentation]({{<relref "/develop/data-types/json/path#jsonpath-syntax">}}).
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/stack-with-enterprise/gears-v1/jvm/classes/gearsbuilder/config-get.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ public static java.lang.String configGet(java.lang.String key)
17
17
Gets the value of a RedisGears [configuration setting]({{< relref "/operate/oss_and_stack/stack-with-enterprise/deprecated-features/triggers-and-functions/Configuration" >}}).
18
18
19
19
{{<note>}}
20
-
You can set configuration values when you load the module or use the [`RG.CONFIGSET`](https://oss.redislabs.com/redisgears/commands.html#rgconfigset) command.
20
+
You can set configuration values when you load the module or use the `RG.CONFIGSET` command.
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.0-release-notes.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ RedisBloom v2.0.3 requires:
35
35
We are proud to announce that we doubled the number of probabilistic data structures that are generally available in RedisBloom. Full documentation is available on [redisbloom.io](https://redisbloom.io)
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisbloom/redisbloom-2.2-release-notes.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ Details:
70
70
71
71
- Bug fixes:
72
72
73
-
-[#419](https://github.com/RedisBloom/RedisBloom/pull/419)[`CMS.INCRBY`](https://oss.redis.com/redisbloom/CountMinSketch_Commands/#cmsincrby) now returns an error on overflow
73
+
-[#419](https://github.com/RedisBloom/RedisBloom/pull/419)`CMS.INCRBY` now returns an error on overflow
-[#392](https://github.com/RedisBloom/RedisBloom/pull/392) Fixed a potential crash on Bloom filter expansion when loading from [AOF]({{< relref "/operate/oss_and_stack/management/persistence" >}})
87
-
-[#404](https://github.com/RedisBloom/RedisBloom/pull/404) Fixed a potential crash on Cuckoo filter when calling [`CF.LOADCHUNK`](https://oss.redis.com/redisbloom/Cuckoo_Commands/#cfloadchunk) on a filter with `EXPANSION` greater than 1
87
+
-[#404](https://github.com/RedisBloom/RedisBloom/pull/404) Fixed a potential crash on Cuckoo filter when calling `CF.LOADCHUNK` on a filter with `EXPANSION` greater than 1
88
88
89
89
## v2.2.9 (November 2021)
90
90
@@ -174,23 +174,23 @@ Details:
174
174
175
175
- Added functionality
176
176
- Bloom
177
-
- #[149](https://github.com/RedisBloom/RedisBloom/issues/149)`BF.INFO` returns [details](https://oss.redislabs.com/redisbloom/Bloom_Commands/#bfinfo) about a specific bloom filter
177
+
- #[149](https://github.com/RedisBloom/RedisBloom/issues/149)`BF.INFO` returns details about a specific bloom filter
178
178
- Scalable
179
-
- #[153](https://github.com/RedisBloom/RedisBloom/issues/153)[Ability to change](https://oss.redislabs.com/redisbloom/Bloom_Commands/#bfreserve) the `EXPANSION` rate. This means each subsequent sub-filter will be `expansion` times larger as the previous one.
179
+
- #[153](https://github.com/RedisBloom/RedisBloom/issues/153) Ability to change the `EXPANSION` rate. This means each subsequent sub-filter will be `expansion` times larger as the previous one.
180
180
- #[160](https://github.com/RedisBloom/RedisBloom/issues/160) Optimise the scaling up of filter according to the [Scalable Bloom Filter](https://core.ac.uk/download/pdf/55607643.pdf) paper
181
-
- #[161](https://github.com/RedisBloom/RedisBloom/issues/161)[Optional](https://oss.redislabs.com/redisbloom/Bloom_Commands/#bfreserve)`NONSCALING` argument to disable scaling. (This saves space since less hash functions are used)
181
+
- #[161](https://github.com/RedisBloom/RedisBloom/issues/161) Optional `NONSCALING` argument to disable scaling. (This saves space since less hash functions are used)
182
182
- #[155](https://github.com/RedisBloom/RedisBloom/issues/155) Disabling rounding up functionality
183
183
- Cuckoo
184
-
- #[149](https://github.com/RedisBloom/RedisBloom/issues/149)`CF.INFO` returns [details](https://oss.redislabs.com/redisbloom/Cuckoo_Commands/#cfinfo) about a specific cuckoo filter
184
+
- #[149](https://github.com/RedisBloom/RedisBloom/issues/149)`CF.INFO` returns details about a specific cuckoo filter
185
185
- Scalable
186
-
- #[138](https://github.com/RedisBloom/RedisBloom/issues/138)[Configurable](https://oss.redislabs.com/redisbloom/Cuckoo_Commands/#cfreserve)`EXPANSION`. When an additional filter is created, its size will be the size of the current filter multiplied by the `expansion`. Higher expansion rates will result in lower error rates.
186
+
- #[138](https://github.com/RedisBloom/RedisBloom/issues/138) Configurable `EXPANSION`. When an additional filter is created, its size will be the size of the current filter multiplied by the `expansion`. Higher expansion rates will result in lower error rates.
187
187
- #[142](https://github.com/RedisBloom/RedisBloom/issues/142) The maximum number of expansions limited to 32.
188
-
- #[131](https://github.com/RedisBloom/RedisBloom/issues/131)[Configurable](https://oss.redislabs.com/redisbloom/Cuckoo_Commands/#cfreserve)`MAXITERATIONS`. Number of attempts to swap buckets before declaring filter as full and creating an additional filter.
189
-
- #[135](https://github.com/RedisBloom/RedisBloom/issues/135)[Configurable](https://oss.redislabs.com/redisbloom/Cuckoo_Commands/#cfreserve)`BUCKETSIZE`. Number of items in each bucket. Higher bucket size value improves the fill rate but result in a higher error rate and slightly slower operation speed.
188
+
- #[131](https://github.com/RedisBloom/RedisBloom/issues/131) Configurable `MAXITERATIONS`. Number of attempts to swap buckets before declaring filter as full and creating an additional filter.
189
+
- #[135](https://github.com/RedisBloom/RedisBloom/issues/135) Configurable `BUCKETSIZE`. Number of items in each bucket. Higher bucket size value improves the fill rate but result in a higher error rate and slightly slower operation speed.
190
190
- #[142](https://github.com/RedisBloom/RedisBloom/issues/142) use of 64bit hash function
191
191
- #[136](https://github.com/RedisBloom/RedisBloom/issues/136) expose compaction of filters in the API
192
192
- CMS
193
-
- #[97](https://github.com/RedisBloom/RedisBloom/issues/97)`CMS.INCRBY`[returns count](https://oss.redislabs.com/redisbloom/CountMinSketch_Commands/#cmsincrby) instead of ‘OK’
193
+
- #[97](https://github.com/RedisBloom/RedisBloom/issues/97)`CMS.INCRBY` returns count instead of ‘OK’
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-1.4-release-notes.md
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Headlines:
31
31
Details:
32
32
33
33
- Bugfixes:
34
-
- #[1218](https://github.com/RediSearch/RediSearch/pull/1218) Potential crash when running [without concurrency](https://oss.redislabs.com/redisearch/1.4/Configuring.html#safemode) and using the [cursor API](https://oss.redislabs.com/redisearch/1.4/Aggregations.html#cursor_api).
34
+
- #[1218](https://github.com/RediSearch/RediSearch/pull/1218) Potential crash when running without concurrency and using the cursor API.
35
35
36
36
## v1.4.27 (April 2020)
37
37
@@ -42,9 +42,9 @@ Headlines:
42
42
Details:
43
43
44
44
- Features:
45
-
- #[1172](https://github.com/redisearch/redisearch/issues/1172) Added [`exists`](https://oss.redislabs.com/redisearch/Aggregations.html#list_of_string_apply_functions) function that can be used on conditional updates ([REPLACE PARTIAL](https://oss.redislabs.com/redisearch/Commands.html#ftadd)) to check if a field exists in the document.
45
+
- #[1172](https://github.com/redisearch/redisearch/issues/1172) Added `exists` function that can be used on conditional updates `REPLACE PARTIAL` to check if a field exists in the document.
46
46
- Minor Enhancements:
47
-
- #[1172](https://github.com/redisearch/redisearch/issues/1172) Lazy evaluation of the right side of 'or'/'and' clauses in [IF condition](https://oss.redislabs.com/redisearch/Commands.html#parameters_1).
47
+
- #[1172](https://github.com/redisearch/redisearch/issues/1172) Lazy evaluation of the right side of 'or'/'and' clauses in IF condition.
48
48
- Bugfixes:
49
49
- #[1110](https://github.com/redisearch/redisearch/issues/1110) Rare GC failure when accessing uninitialized variable.
50
50
- #[1131](https://github.com/redisearch/redisearch/issues/1131) Crash on highlighting a search query where the document no longer exists.
@@ -68,7 +68,7 @@ Headlines:
68
68
Details:
69
69
70
70
- Features:
71
-
- #[1051](https://github.com/RediSearch/RediSearch/issues/1051) Added support for updating tag fields on document updates with [`NOINDEX`](https://oss.redislabs.com/redisearch/Commands.html#field_options) fields.
71
+
- #[1051](https://github.com/RediSearch/RediSearch/issues/1051) Added support for updating tag fields on document updates with `NOINDEX` fields.
72
72
- Bugfixes:
73
73
- #[1051](https://github.com/RediSearch/RediSearch/issues/1051)`FORK GC` was not updating the unique sum of the numeric index.
74
74
@@ -116,7 +116,7 @@ Headlines:
116
116
Details:
117
117
118
118
- Bugfixes:
119
-
- #[1031](https://github.com/RediSearch/RediSearch/issues/1031) Highlighting crashed when used with [`NOINDEX`](https://oss.redislabs.com/redisearch/Commands.html#field_options) fields.
119
+
- #[1031](https://github.com/RediSearch/RediSearch/issues/1031) Highlighting crashed when used with `NOINDEX` fields.
120
120
121
121
## v1.4.20 (January 2020)
122
122
@@ -126,7 +126,7 @@ This is a maintenance release for version 1.4.
126
126
This release improves overall stability and provides fixes for issues found after the previous release.
127
127
128
128
- Improvements
129
-
- #[1020](https://github.com/RediSearch/RediSearch/issues/1020) Performance improvement for reading fields that are not [sortable](https://oss.redislabs.com/redisearch/Overview.html#sortable_fields).
129
+
- #[1020](https://github.com/RediSearch/RediSearch/issues/1020) Performance improvement for reading fields that are not sortable.
130
130
- Bugfixes
131
131
- #[1022](https://github.com/RediSearch/RediSearch/issues/1022) Illegal memory access by queries during `GC` run.
132
132
- #[1022](https://github.com/RediSearch/RediSearch/issues/1022) Recreating the index with the same name (delete+create) removed the index from cursor list.
@@ -144,7 +144,7 @@ This release improves overall stability and provides fixes for issues found afte
144
144
- Bugfixes
145
145
- #[1000](https://github.com/RediSearch/RediSearch/issues/1000) - `FT.DEL` was not replicated to replica correctly
146
146
- #[1004](https://github.com/RediSearch/RediSearch/issues/1004) - Memory leak on `TAG` array on certain situations
147
-
- #[1006](https://github.com/RediSearch/RediSearch/issues/1006) - Unexposed error on [conditional update `IF`](https://oss.redislabs.com/redisearch/Commands.html#ftadd) that caused the error message to leak
147
+
- #[1006](https://github.com/RediSearch/RediSearch/issues/1006) - Unexposed error on conditional update `IF` that caused the error message to leak
148
148
149
149
## v1.4.18 (November 2019)
150
150
@@ -194,8 +194,8 @@ This release improves overall stability and provides fixes for issues found afte
194
194
Main Fixes:
195
195
196
196
- #[866](https://github.com/RediSearch/RediSearch/issues/866) - Fix RDB corruption caused by deleting none-existing terms from the suggestion trie.
197
-
- When Redis exits, forked processes by [FORK Garbage Collection](https://oss.redislabs.com/redisearch/Configuring.html#gc_policy) will now be closed accordingly.
198
-
- For indices that are not [temporary](https://oss.redislabs.com/redisearch/Commands.html#ftcreate) and [interleaved](https://oss.redislabs.com/redisearch/Configuring.html#safemode): When an index is dropped, the indexer thread is now closed.
197
+
- When Redis exits, forked processes by FORK Garbage Collection will now be closed accordingly.
198
+
- For indices that are not temporary and interleaved: When an index is dropped, the indexer thread is now closed.
199
199
200
200
## v1.4.14 (20 August 2019)
201
201
@@ -206,7 +206,7 @@ This release improves overall stability and provides fixes for issues found afte
206
206
207
207
Main Fixes:
208
208
209
-
- #[851](https://github.com/RediSearch/RediSearch/issues/851) In interleaved mode ([non safemode](https://oss.redislabs.com/redisearch/Configuring.html#safemode)), documents deleted by concurrent updates, will be ignored.
209
+
- #[851](https://github.com/RediSearch/RediSearch/issues/851) In interleaved mode (non safemode), documents deleted by concurrent updates, will be ignored.
210
210
211
211
## v1.4.13 (8 August 2019)
212
212
@@ -246,7 +246,7 @@ Update urgency: Medium
246
246
This release only add support for aliasing to the previews 1.4.10 release.
247
247
248
248
- Added functionality
249
-
- #[731](https://github.com/RediSearch/RediSearch/issues/731) Add index aliasing. This allows users to provide (or remove) ‘links’ to indexes. The commands are FT.ALIASADD, FT.ALIASDEL, and FT.ALIASUPDATE. See [ftaliasadd](https://oss.redislabs.com/redisearch/Commands.html#ftaliasadd) for details.
249
+
- #[731](https://github.com/RediSearch/RediSearch/issues/731) Add index aliasing. This allows users to provide (or remove) ‘links’ to indexes. The commands are FT.ALIASADD, FT.ALIASDEL, and FT.ALIASUPDATE.
RediSearch's [configuration](https://oss.redislabs.com/redisearch/Configuring/) is applied via arguments passed to the module at load time. This release introduces the new [`FT.CONFIG`command](https://oss.redislabs.com/redisearch/Commands/#ftconfig) that allows to retrieve the current configuration as well as change it during runtime.
385
+
RediSearch's [configuration]({{<relref "/develop/interact/search-and-query/basic-constructs/configuration-parameters">}}) is applied via arguments passed to the module at load time. This release introduces the new `FT.CONFIG` command that allows to retrieve the current configuration as well as change it during runtime.
386
386
387
387
### Unlimited autocomplete results
388
388
@@ -410,19 +410,19 @@ To support this use case, RediSearch has been reworked internally to use 64-bit
410
410
411
411
### Conditional updates
412
412
413
-
The `IF` subcommand has been add to [`FT.ADD`](https://oss.redislabs.com/redisearch/Commands/#ftadd). When used with the existing `REPLACE [PARTIAL]` subcommand, the document will be updated only if the condition provided evaluates to a truth value, otherwise a special `NOADD` reply is returned.
413
+
The `IF` subcommand has been add to `FT.ADD`. When used with the existing `REPLACE [PARTIAL]` subcommand, the document will be updated only if the condition provided evaluates to a truth value, otherwise a special `NOADD` reply is returned.
414
414
415
415
### Schema modification
416
416
417
-
The [`FT.ALTER`](https://oss.redislabs.com/redisearch/Commands/#ftalter) command has been introduced, and provides the ability to add new fields to the definition of an existing index. The contents of such newly-added fields are indexed only for new or updated documents.
417
+
The `FT.ALTER` command has been introduced, and provides the ability to add new fields to the definition of an existing index. The contents of such newly-added fields are indexed only for new or updated documents.
418
418
419
419
### Query spelling correction
420
420
421
-
Query spelling correction, a.k.a "did you mean", is now provided via the [`FT.SPELLCHECK`](https://oss.redislabs.com/redisearch/Commands/#ftspellcheck) command. It enables generating suggestions for search terms that could be misspelled. For more details see [Query Spelling Correction](https://oss.redislabs.com/redisearch/Spellcheck/).
421
+
Query spelling correction, a.k.a "did you mean", is now provided via the `FT.SPELLCHECK` command. It enables generating suggestions for search terms that could be misspelled. For more details see [Query Spelling Correction]({{<relref "/develop/interact/search-and-query/advanced-concepts/spellcheck">}}).
422
422
423
423
### Phonetic matching
424
424
425
-
Phonetic matching, a.k.a "Jon or John?", is now supported via the `PHONETIC` text field attribute. The terms in such fields are also indexed by their phonetic equivalents, and search results include these by default. For more details see [Phonetic Matching](https://oss.redislabs.com/redisearch/Phonetic_Matching/).
425
+
Phonetic matching, a.k.a "Jon or John?", is now supported via the `PHONETIC` text field attribute. The terms in such fields are also indexed by their phonetic equivalents, and search results include these by default. For more details see [Phonetic Matching]({{<relref "/develop/interact/search-and-query/advanced-concepts/phonetic_matching">}}).
0 commit comments