Skip to content

Instantly share code, notes, and snippets.

@ugurozgen
Last active March 19, 2020 18:47
Show Gist options
  • Select an option

  • Save ugurozgen/db2aa143f935781b364d6853d0b05b57 to your computer and use it in GitHub Desktop.

Select an option

Save ugurozgen/db2aa143f935781b364d6853d0b05b57 to your computer and use it in GitHub Desktop.
redis to redis easy migration ==> ./rtor.sh from.redis.com to.redis.com
#!/bin/bash
FROM=$1
TO=$2
npm i redis-dump -g
redis-dump -h $FROM > dump.txt
cat dump.txt | redis-cli -h $TO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment