addons(kv): add GETDEL, HEXISTS, HSETNX, HINCRBY, EXPIREAT, PEXPIREAT commands#892
Open
baptiste-le-m wants to merge 1 commit intoCleverCloud:mainfrom
Open
Conversation
✅ Review app deployedCheck how your changes look like!
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Materia KV documentation and changelog to reflect newly supported Redis-compatible commands introduced in Materia KV v2.5.0.
Changes:
- Adds
GETDEL,HEXISTS,HSETNX,HINCRBY,EXPIREAT, andPEXPIREATto the supported-commands table. - Fixes the alphabetical ordering of
STRLENin the supported-commands list. - Adds a 2026-03-11 changelog entry describing the new commands and reliability improvements.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| content/doc/addons/materia-kv.md | Extends the supported command reference table with new commands and corrects ordering. |
| content/changelog/2026/03-11-materia-kv-new-commands.md | Adds a changelog post announcing the new commands and reliability changes. |
You can also share your feedback on Copilot code review. Take the survey.
1623f88 to
157bd13
Compare
157bd13 to
ebbf118
Compare
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.
📝 What does this PR do?
This PR updates Materia KV documentation to reflect the new commands available in version 2.5.0:
GETDEL: atomically get a string value and delete its keyHEXISTS: check if a field exists in a hashHSETNX: set a hash field only if it does not already existHINCRBY: increment the integer value of a hash fieldEXPIREAT: set key expiration using an absolute Unix timestamp in secondsPEXPIREAT: set key expiration using an absolute Unix timestamp in millisecondsIt also includes a changelog entry covering these new commands as well as reliability improvements in the underlying storage layer (scan boundary fixes, transaction retry limits).
A pre-existing alphabetical ordering issue (
STRLENwas afterSUNION/SUNIONSTORE) has been fixed.🧪 Type of Change
✅ Quick Checklist
👥 Reviewers
@davlgd @PierreZ