Skip to content

Commit

Permalink
OP: add known limitations notes to search release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
dwdougherty committed Feb 12, 2025
1 parent 79d2b76 commit 631e575
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
Bug fixes:
- [#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"_

Known limitations:
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
Example:

```
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
```
The `FT.SEARCH` command will return no documents.
## v2.10.11 (January 2025)
This is a maintenance release for RediSearch 2.10.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
Bug fixes:
- [#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_"

Known limitations:
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
Example:

```
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
```
The `FT.SEARCH` command will return no documents.
## v2.6.25 (January 2025)
This is a maintenance release for RediSearch 2.6.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ Update urgency: `HIGH` : There is a critical bug that may affect a subset of use
Bug fixes:
- [#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_"

Known limitations:
- Only the first 128 characters of string fields are normalized to lowercase during ingestion (for example, on `HSET`).
Example:

```
HSET doc __score 1.0 name "idx1S...S" mynum 1 # Assume "S...S" is a string of 252 capital S's
FT.CREATE "idx" SCHEMA "name" "TEXT" "mynum" "NUMERIC"
FT.SEARCH "idx" "@name:idx1S...S" # Assume "S...S" is a string of 252 capital S's
```
The `FT.SEARCH` command will return no documents.
## v2.8.22 (January 2025)
This is a maintenance release for RediSearch 2.8.
Expand Down

0 comments on commit 631e575

Please sign in to comment.