feat: add hash field TTL commands (HPERSIST, HTTL, HPTTL, HSETEX) - #436
Open
adamrothman wants to merge 10 commits into
Open
feat: add hash field TTL commands (HPERSIST, HTTL, HPTTL, HSETEX)#436adamrothman wants to merge 10 commits into
adamrothman wants to merge 10 commits into
Conversation
HSETEX, HPERSIST, HTTL, HPTTL wire commands and direct API methods (HExpire, HPersist, HTTL, HSetEX). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Fix method count, add key-does-not-exist behavior, HSETEX no-expiration semantics, EXAT/PXAT parse-vs-resolve detail, TTL validation rules. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 tasks covering HPERSIST, HTTL, HPTTL, HSETEX wire commands, direct API methods, integration tests, and README update. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
|
Thanks for the PR! It looks good, but I'll have to go through it in detail, which will take a bit. |
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.
I'm working on a project that makes use of TTLs for hash values. I'd like to be able to write tests for this functionality, but miniredis currently lacks support for most of the necessary commands. So I put Claude to work!
This PR doesn't include all of the TTL-related commands, but it's a start. If there's an appetite for the rest, I can see about implementing those too.
Summary
Adds wire commands and direct API methods for hash field TTL operations, building on the existing HEXPIRE implementation:
HExpire,HPersist,HTTL,HSetEXon both*Miniredisand*RedisDBparseFieldsArgshelper for theFIELDS numfields field...argument blockTest plan
TestDirectHashFieldTTL)go test ./... -count=1)go vet ./...clean