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

Redis 7.0 support #2068

Open
25 of 37 tasks
remicollet opened this issue Jan 31, 2022 · 4 comments
Open
25 of 37 tasks

Redis 7.0 support #2068

remicollet opened this issue Jan 31, 2022 · 4 comments

Comments

@remicollet
Copy link
Collaborator

remicollet commented Jan 31, 2022

From RELEASENOTES

New user commands or command arguments

New administrative and introspection commands and command arguments

  • COMMAND DOCS (#9656, #10056, #10104)
  • COMMAND LIST (#9504)
  • COMMAND INFO accepts sub-commands as args, and no args too (#9504, #10056)
  • LATENCY HISTOGRAM (#9462)
  • CLUSTER LINKS (#9774)
  • CLUSTER DELSLOTSRANGE and CLUSTER ADDSLOTSRANGE (#9445)
  • CLIENT NO-EVICT (#8687)
  • ACL DRYRUN (#9974)
  • SLOWLOG GET supports passing in -1 to get all entries (#9018)

Command replies that have been extended

  • COMMAND and COMMAND INFO extended with tips, key-specs and sub-commands
  • see https://redis.io/commands/command
  • ACL CAT, COMMAND LIST list sub-commands (#10127)
  • MODULE LIST reply includes path and args (#4848)
  • OBJECT ENCODING returns listpack instead of ziplist (#8887, #9366)
  • CLUSTER SLOTS hostname support (#9530)
  • COMMAND command: Added the blocking and module flags (#10104, #9656)

From 7.0RC2

New user commands or command arguments

Command replies that have been extended

  • XINFO reports consumer group lag and a few other fields (#9127)
  • XAUTOCLAIM returns a new element with a list of deletes IDs (#10227)
@remicollet
Copy link
Collaborator Author

Notice: phpredis 5.3.6 test suite passes usig redis 7.0-rc1

michael-grunder added a commit that referenced this issue Oct 13, 2022
Update BITPOS to use the new argument parsing macros as well as
implement Redis 7.0.0's BIT/BYTE modifier.

Additionally I changed `int $bit` to `bool $bit` as its a more
appropriate datatype.

See #2068
michael-grunder added a commit that referenced this issue Oct 13, 2022
Update BITPOS to use the new argument parsing macros as well as
implement Redis 7.0.0's BIT/BYTE modifier.

Additionally I changed `int $bit` to `bool $bit` as its a more
appropriate datatype.

See #2068
michael-grunder added a commit that referenced this issue Oct 13, 2022
Update BITPOS to use the new argument parsing macros as well as
implement Redis 7.0.0's BIT/BYTE modifier.

Additionally I changed `int $bit` to `bool $bit` as its a more
appropriate datatype.

See #2068
michael-grunder added a commit that referenced this issue Oct 14, 2022
michael-grunder added a commit that referenced this issue Oct 14, 2022
michael-grunder added a commit that referenced this issue Oct 14, 2022
michael-grunder added a commit that referenced this issue Oct 16, 2022
michael-grunder added a commit that referenced this issue Oct 17, 2022
Redis 7.0.0 allows for getting and setting multiple config values as an
atomic operation.  In order to support this while maintaining backward
compatibility, the CONFIG command is reworked to also accept an array of
values or keys and values.

See: #2068
michael-grunder added a commit that referenced this issue Oct 17, 2022
Redis 7.0.0 allows for getting and setting multiple config values as an
atomic operation.  In order to support this while maintaining backward
compatibility, the CONFIG command is reworked to also accept an array of
values or keys and values.

See: #2068
michael-grunder added a commit that referenced this issue Oct 17, 2022
Redis 7.0.0 allows for getting and setting multiple config values as an
atomic operation.  In order to support this while maintaining backward
compatibility, the CONFIG command is reworked to also accept an array of
values or keys and values.

See: #2068
michael-grunder added a commit that referenced this issue Oct 19, 2022
Redis 7.0.0 allows for getting and setting multiple config values as an
atomic operation.  In order to support this while maintaining backward
compatibility, the CONFIG command is reworked to also accept an array of
values or keys and values.

See: #2068
michael-grunder added a commit that referenced this issue Oct 19, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 19, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 19, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 19, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
@michael-grunder michael-grunder pinned this issue Oct 20, 2022
michael-grunder added a commit that referenced this issue Oct 21, 2022
Implement Redis 7.0.0's readonly eval variants

See: #2068
michael-grunder added a commit that referenced this issue Oct 22, 2022
Implement Redis 7.0.0's readonly eval variants

See: #2068
michael-grunder added a commit that referenced this issue Oct 22, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 22, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 22, 2022
michael-grunder added a commit that referenced this issue Oct 22, 2022
michael-grunder added a commit that referenced this issue Oct 22, 2022
michael-grunder added a commit that referenced this issue Oct 23, 2022
Refactor XGROUP and implement the new DELCONSUMER (Redis 6.2.0) and
ENTRIESREAD (Redis 7.0.0) options.  Additionally, add a proper phpdoc
block to the stub file.

See #2068
michael-grunder added a commit that referenced this issue Oct 23, 2022
michael-grunder added a commit that referenced this issue Oct 23, 2022
yatsukhnenko added a commit that referenced this issue Nov 1, 2022
yatsukhnenko added a commit that referenced this issue Nov 1, 2022
yatsukhnenko added a commit that referenced this issue Nov 19, 2022
yatsukhnenko added a commit that referenced this issue Nov 19, 2022
yatsukhnenko added a commit that referenced this issue Nov 19, 2022
yatsukhnenko added a commit that referenced this issue Dec 1, 2022
yatsukhnenko added a commit that referenced this issue Dec 24, 2022
Add FCALL/FCALL_RO commands
@yatsukhnenko
Copy link
Member

@michael-grunder are we going to implement other commands from this issue?

@michael-grunder
Copy link
Member

I'll go through the list today. I think some yes (like the new stream additions) but probably not things like CLUSTER ADDSLOTS, etc.

What do you think?

@yatsukhnenko
Copy link
Member

@michael-grunder XSETID is an internal command, we don't need to implement it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants