redis-dump-go
redis-dump-go copied to clipboard
Backup & Restore your Redis server - FAST
redis version: 5.0.4 redis-dump: 0.4.6 ``` [root@mtl-gslb-redis ~]# redis-cli info # Keyspace db0:keys=6890,expires=0,avg_ttl=0 db1:keys=86949,expires=0,avg_ttl=0 large keys is in db1 db2:keys=1217,expires=0,avg_ttl=0 db3:keys=8196,expires=0,avg_ttl=0 db4:keys=493653,expires=0,avg_ttl=0 db5:keys=1178,expires=0,avg_ttl=0 db6:keys=1,expires=0,avg_ttl=0 db8:keys=1,expires=0,avg_ttl=0 db12:keys=155,expires=0,avg_ttl=0 ``` redis dump success...
Hello looks like you need to update the [build section](https://github.com/yannh/redis-dump-go#build) of readme with adding env variable `GO111MODULE=off` overwise ${GOPATH}/src folder is empty after go get: `/bin/sh: cd: line 1: can't...
In my use case it was needed to import dump from database 4 of one instance to default database of another one, new option allows to remove "select" statement for...
I am attempting to use this to backup a redis instance that I am using with [lorawan-stack](https://github.com/TheThingsNetwork/lorawan-stack) and when I run the tool I am getting the following output: ```...
Update the password-value method from the original environment variable to the command line
Hi, What's the reason for having this check: ``` if dbIndex > 16 { return nil, fmt.Errorf("Error parsing INFO keyspace") } ```