Transdis is a utility to migrate data between Redis instances, with TLS support.
Use yarn or npm to install Transdis.
yarn add transdis
npm install transdis
import transdis from 'transdis'
const source = {
host: '<source_instance_host>',
port: 6379,
}
const destination = {
host: '<destination_instance_host>',
port: 6379,
tls: {},
}
const opts = {}
transdis.migrate(source, destination, opts)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.