使用redis-dump进行Redis数据库合并:https://www.cnblogs.com/jasondan/p/4031399.html
Redis-Dump安装使用:https://www.jianshu.com/p/19b5e7b3bffb
Redis导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-导入-redis-dump and redis-load:https://blog.csdn.net/htmlgood/article/details/54623630
redis中使用redis-dump导出、导入、还原数据实例:https://blog.csdn.net/dszgf5717/article/details/48002943
redis借助第三方工具,备份和还原,redis-dump
1、安装redis-dump
[root@localhost tank]# yum install ruby rubygems ruby-devel //安装rubygems 以及相关包
[root@localhost tank]# gem sources -a http://ruby.taobao.org/ //源,加入淘宝,外源无法访问
http://ruby.taobao.org/ added to sources
[root@localhost tank]# gem install redis-dump -V //安装redis-dump
2、redis-dump导出数据
[root@localhost tank]# telnet 127.0.0.1 6379 //telnet到redis
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
set test 11 //设置一个值
OK
get test //取值
$2
11
[root@localhost tank]# redis-dump -u 127.0.0.1:6379 >test.json ///导出数据
3、redis-load还原数据
[root@localhost tank]# telnet 127.0.0.1 6379 //telnet到redis
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
flushall //请空所有数据
OK
keys * ///检查已清空
*0
[root@localhost tank]# < test.json redis-load ///导入数据
[root@localhost tank]# telnet 127.0.0.1 6379
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
keys * //成功导入
*1
$4
test
如果您对本文有任何疑问,请点击进入脚本之家知识社区提问。
您可能对文章感兴趣:
- Redis动态字符串学习教程
- Redis有序集合类型常用命令总结
- 超强,超详细Redis数据库入门教程
- redis 队列操作的例子(php)
- redis共享常用命令、常见错误、配置技巧等
- Redis操作命令总结
- Redis介绍了五种数据结构的使用场景
- redis安全设置,如密码设置、访问权限控制等
- redis常用命令总结
- Redis总结字符串类型的常用命令