docs: mark MIGRATE as available for C# and PHP - #293
Open
Aryex wants to merge 1 commit into
Open
Conversation
Aryex
force-pushed
the
alexl/agent/csharp-migrate-command
branch
from
July 26, 2026 21:27
edb41ae to
a19e42e
Compare
Aryex
marked this pull request as ready for review
July 27, 2026 14:52
Aryex
force-pushed
the
alexl/agent/csharp-migrate-command
branch
from
July 27, 2026 14:52
a19e42e to
3ad29db
Compare
Signed-off-by: kiro-agent <kiro-agent@users.noreply.github.com>
Aryex
force-pushed
the
alexl/agent/csharp-migrate-command
branch
from
July 31, 2026 08:02
3ad29db to
c5d519b
Compare
Collaborator
Author
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.
Summary
Mark the MIGRATE command as available for the C# and PHP clients in the command progress tracker.
Source Commits
8763372— AddMIGRATEcommand support (#447)c2cfab8— Implement migrate command (Proposal: Managing deployments withdraftcontents #276)Changes
available-commands.json: changed C# status for MIGRATE fromnot_availabletoavailableavailable-commands.json: changed PHP status for MIGRATE fromnot_availabletoavailablecsharp-hrefandphp-hreftracking links since the command is now implemented in both clientsContext
C# #447 implements
MigrateAsync(ValkeyKey key, MigrateOptions options)onBaseClient(standalone + cluster) andMigrateAsync(IEnumerable<ValkeyKey> keys, MigrateOptions options)onGlideClient(standalone-only).MigrateOptionsprovides fluent builders for COPY, REPLACE, and AUTH/AUTH2 flags, implementsIDisposablefor credential-safe password handling, and builds the full wire-format argument array.Php #276 implements
migrate(string $host, int $port, string|array $key, int $dstdb, int $timeout, bool $copy = false, bool $replace = false, mixed $credentials = null)for both standalone (ValkeyGlide) and cluster (ValkeyGlideCluster) PHP clients. Supports single-key migration (both clients), multi-key migration (standalone only), COPY/REPLACE flags, and AUTH/AUTH2 credentials. PHPRedis-compatible signature.With this change, MIGRATE is now available across all GLIDE language clients (Python, Node.js, Java, Go, C#, PHP).
cc @currantw @prateek-kumar-improving
This PR was generated by the automated documentation pipeline.