transdis
v1.1.0
Published
A utility to migrate between Redis instances
Downloads
2
Readme
Transdis
Transdis is a utility to migrate data between Redis instances, with TLS support.
Installation
Use yarn or npm to install Transdis.
yarn add transdis
npm install transdis
Usage
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)
Contributing
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.