Add support for HGETGEL, HGETEX and HSETEX commands#3226
Closed
viktoriya-kutsarova wants to merge 3 commits into
Closed
Add support for HGETGEL, HGETEX and HSETEX commands#3226viktoriya-kutsarova wants to merge 3 commits into
viktoriya-kutsarova wants to merge 3 commits into
Conversation
Signed-off-by: viktoriya.kutsarova <viktoriya.kutsarova@redis.com>
Signed-off-by: viktoriya.kutsarova <viktoriya.kutsarova@redis.com>
Signed-off-by: viktoriya.kutsarova <viktoriya.kutsarova@redis.com>
20a7d3f to
00e1ba2
Compare
onobc
pushed a commit
that referenced
this pull request
Oct 4, 2025
Adds the following commands: * HGETDEL - get and delete the value of one or more fields of a given hash key. When the last field is deleted, the key will also be deleted * HGETEX - get the value of one or more fields of a given hash key and optionally set their expiration time or time-to-live (TTL) * HSETEX - set the value of one or more fields of a given hash key, and optionally set their expiration time or time-to-live (TTL) Original Pull Request: #3226 Resolves: #3211
Contributor
|
Thank you for the contribution @viktoriya-kutsarova - well done! I added a small polish commit here - nothing major. Closing in favor of 8ec4736 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change introduces the Add HGETDEL, HGETEX and HSETEX hash commands feature as part of the features provided by the spring-data-redis project. Closes #3211.
As part of the change the following commands would be made available:
The new commands are available as part of the following interfaces:
(based on similar PR #3054)
This feature is available starting from Redis OSS version 8.0.x and later