Skip to content

Commit 6a3cee9

Browse files
authored
OP: add known limitations notes to search release notes (#1162)
1 parent 79d2b76 commit 6a3cee9

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.10-release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
2727
Bug fixes:
2828
- [#5596](https://github.com/redisearch/redisearch/pull/5596) Changes on the memory block reading logic could cause crash on `FT.SEARCH` with error "_Redis 7.4.2 crashed by signal: 11, si_code: 128"_
2929

30+
Known limitations:
31+
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
32+
Example:
33+
34+
```
35+
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
36+
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
37+
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
38+
```
39+
40+
The `FT.SEARCH` command will return no documents.
41+
3042
## v2.10.11 (January 2025)
3143
3244
This is a maintenance release for RediSearch 2.10.

content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.6-release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
2929
Bug fixes:
3030
- [#5606](https://github.com/redisearch/redisearch/pull/5606) Changes on the memory block reading logic could cause crash on `FT.SEARCH` with error "_Redis 7.4.2 crashed by signal: 11, si_code: 128_"
3131

32+
Known limitations:
33+
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
34+
Example:
35+
36+
```
37+
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
38+
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
39+
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
40+
```
41+
42+
The `FT.SEARCH` command will return no documents.
43+
3244
## v2.6.25 (January 2025)
3345
3446
This is a maintenance release for RediSearch 2.6.

content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisearch/redisearch-2.8-release-notes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
2727
Bug fixes:
2828
- [#5605](https://github.com/redisearch/redisearch/pull/5605) Changes on the memory block reading logic could cause crash on `FT.SEARCH` with error "_Redis 7.4.2 crashed by signal: 11, si_code: 128_"
2929

30+
Known limitations:
31+
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
32+
Example:
33+
34+
```
35+
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
36+
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
37+
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
38+
```
39+
40+
The `FT.SEARCH` command will return no documents.
41+
3042
## v2.8.22 (January 2025)
3143
3244
This is a maintenance release for RediSearch 2.8.

0 commit comments

Comments
 (0)