博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Python快速查询所有指定匹配KEY的办法
阅读量:5290 次
发布时间:2019-06-14

本文共 442 字,大约阅读时间需要 1 分钟。

import redisredis_ip = '10.10.14.224'redis_port = 18890# 配置redis的连接办法 # http://blog.csdn.net/u010472499/article/details/78022533pool = redis.ConnectionPool(host=redis_ip, port=redis_port)r = redis.Redis(connection_pool=pool)count = 0for key in r.scan_iter(match='login_*', count=10000):    count = count + 1    print('进入' + str(count) + '次,' + str(key, encoding='utf-8'))    # r.delete(key)

 

转载于:https://www.cnblogs.com/littlehb/p/7977632.html

你可能感兴趣的文章
第十章、datetime模块
查看>>
第十章、sys模块
查看>>
第十章、random模块
查看>>
第十章、hashlib模块和hmac模块
查看>>
第十章、json和pickle模块
查看>>
第十章、logging模块
查看>>
第十章、typing模块
查看>>
第十章、numpy模块
查看>>
第十章、jupyter入门之pandas
查看>>
第十章、collections
查看>>
第十一章、面向对象及类与对象
查看>>
第十一章、定制对象独有特征
查看>>
第十一章、类和数据类型
查看>>
第十一章、类的继承
查看>>
第十一章、对象属性查找顺序与属性和方法
查看>>
0827作业
查看>>
第十一章、菱形继承问题
查看>>
第十一章、super()详解
查看>>
第十一章、面向对象之多态、多态性
查看>>
第十一章 面向对象之类的组合
查看>>