导出redis中较大的key值
2022/3/1 19:51:53
本文主要是介绍导出redis中较大的key值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文件内容
#!/usr/bin/env python # -*- coding: UTF-8 -*- import sys import redis import os pool=redis.ConnectionPool(host='127.0.0.1',password='xxxxxx',db=2) r = redis.StrictRedis(connection_pool=pool) #指定key key = sys.argv[1] #获取当前路径 path = os.getcwd() keytype = r.type(key) print("key的类型为%s" % (keytype)) #扫描到的key输出的文件 txt = path+"/%s.txt" % (key) #打开文件 def list_iter(key): list_count = r.llen(key) for index in range(list_count): yield r.lindex(key, index) if keytype==b'list': f = open(txt,"w") for item in list_iter(key): #将匹配到对应key中的member/score输出到文件中 f.write("%s %s" % (item,"\n")) f.close else: print("key的类型为string,value为:" + r.get(key))
运行: python3 get_redis_key.py "key_name"
参考:https://segmentfault.com/a/1190000014415321
这篇关于导出redis中较大的key值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-08阿里云Redis项目实战入门教程
- 2024-11-08阿里云Redis资料:新手入门与初级使用指南
- 2024-11-08阿里云Redis教程:新手入门及实用指南
- 2024-11-07阿里云Redis学习入门:新手必读指南
- 2024-11-07阿里云Redis学习入门:从零开始的操作指南
- 2024-11-07阿里云Redis学习:初学者指南
- 2024-11-06阿里云Redis入门教程:轻松搭建与使用指南
- 2024-11-02Redis项目实战:新手入门教程
- 2024-10-22Redis入门教程:轻松掌握数据存储与操作
- 2024-10-22Redis缓存入门教程:快速掌握Redis缓存基础知识