Skip to content

Update migration.md #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ KeyDB is compatible with all Redis clients as listed [here](https://redis.io/cli

This document will discuss migration from Redis to KeyDB and vice versa. In each scenario the methodology is similar. We will look at both an offline migration and a live migration for each scenario.

**Note: RDB Format 10 is not supported and therefore this guide does not apply to migrations from Redis 7.0 and above.**

## Create a Snapshot

Using [SAVE](https://docs.keydb.dev/docs/commands/#save) or [BGSAVE](https://docs.keydb.dev/docs/commands/#bgsave) you can create an RDB backup file of the database. If you are saving in production where you don't want any downtime it is recommended to use BGSAVE to prevent blocking clients as SAVE performs synchronously.
Expand Down