feat(command): add FLUSHSLOTS command to clear keys in specified slot ranges in cluster mode#3375
Open
sryanyuan wants to merge 1 commit intoapache:unstablefrom
Open
feat(command): add FLUSHSLOTS command to clear keys in specified slot ranges in cluster mode#3375sryanyuan wants to merge 1 commit intoapache:unstablefrom
sryanyuan wants to merge 1 commit intoapache:unstablefrom
Conversation
… ranges in cluster mode
git-hulk
approved these changes
Feb 26, 2026
PragmaTwice
reviewed
Feb 26, 2026
Contributor
Author
I agree — this command would be more appropriately placed under the CLUSTERX command as a subcommand, given that it relates to slot operations. I will update the implementation accordingly. Thank you for highlighting this. |
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.
Add FLUSHSLOTS command to clear keys in specified slot ranges in cluster mode
FLUSHSLOTS allows clearing keys from one or more cluster slots without affecting other slots.
It operates on the current connection's namespace (cluster mode does not support multiple namespaces).
The command returns an error if a slot migration is in progress to prevent conflicts.
Slot ranges can be specified as:
- Single slot: FLUSHSLOTS 1234
- Range: FLUSHSLOTS 100-200
- Multiple ranges: FLUSHSLOTS “0 2 4 6-9”
Example:
FLUSHSLOTS "0 2 4 6-9"
Unit tests have been added to verify clearing multiple slots and ensuring remaining keys match expectations.