Skip to content

refactor!: redis 8 compatibility improvements and test infrastructure updates #2893

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

Merged
merged 7 commits into from
Feb 27, 2025
Prev Previous commit
Next Next commit
test(search): support Redis 8 INFO indexes_all field
- Add indexes_all field introduced in Redis 8 to index definition test
  • Loading branch information
bobymicroby committed Feb 27, 2025
commit 09172786f2bc3b7ddd2179a6e7913a79ca142f44
9 changes: 8 additions & 1 deletion packages/search/lib/commands/INFO.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ describe('INFO', () => {
index_name: 'index',
index_options: [],
index_definition: Object.create(null, {
default_score: {

indexes_all: {
value: 'false',
configurable: true,
enumerable: true
},

default_score: {
value: '1',
configurable: true,
enumerable: true
Expand Down