Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OP: add known limitations notes to search release notes #1162

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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