pythonredis使用场景(python redis 删除key脚本的实例)
类别:脚本大全 浏览量:2316
时间:2022-03-30 00:35:47 pythonredis使用场景
python redis 删除key脚本的实例单机模式 代码片段
安装 pip install redis
|
import redis r = redis.Redis(host = '192.168.1.3' , port = 6188 ,db = 0 ,decode_responses = True ) list_keys = r.keys( "DEMO_xx_*" ) for key in list_keys: r.delete(key) |
集群模式 代码片段
安装 pip install redis-py-cluster
|
from rediscluster import StrictRedisCluster import sys #pip install redis-py-cluster redis_nodes = [{ 'host' : '192.168.1.63' , 'port' : 7000 }, { 'host' : '192.168.1.63' , 'port' : 7001 }, { 'host' : '192.168.1.63' , 'port' : 7002 } ] try : redisconn = StrictRedisCluster(startup_nodes = redis_nodes) list_keys = redisconn.keys( "DEMO_1_*" ) for key in list_keys: redisconn.delete(key) except : print ( "Connect Error!" ) sys.exit( 1 ) |
以上这篇python redis 删除key脚本的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/weixin_40294332/article/details/81302968
您可能感兴趣
- python中列表操作五种常用方法(Python使用paramiko操作linux的方法讲解)
- python3.8基本操作(Python3.5文件修改操作实例分析)
- python编写pygame游戏怎么打包(python使用pygame模块实现坦克大战游戏)
- python提取字符串中的正则表达式(python3正则提取字符串里的中文实例)
- 基于python的加密算法(python实现维吉尼亚加密法)
- python pandas读取数据库表(Python3.5 Pandas模块之DataFrame用法实例分析)
- python常见知识点整理(Python基础知识点 初识Python.md)
- python中字典的常用操作(11个Python3字典内置方法大全与示例汇总)
- python爬虫出租屋(python爬虫租房信息在地图上显示的方法)
- 零基础学计算机二级python(计算机二级python学习教程1 教大家如何学习python)
- python 导入指定文件夹的模块(Python实现的在特定目录下导入模块功能分析)
- python中的pandas功能(Python常见的pandas用法demo示例)
- python初学者必备函数(Python小白必备的8个最常用的内置函数推荐)
- python程序开发过程(python调用外部程序的实操步骤)
- pythonftp功能介绍(使用Python操作FTP实现上传和下载的方法)
- pythonssl版本(解决Python 使用h5py加载文件,看不到keys的问题)
- 今天要吃什么(今天要吃什么菜)
- 营养餐是什么(学校营养餐是什么)
- 谁说女子不如男 范冰冰演的武则天只是其一,另外两位你认识吗(谁说女子不如男)
- 杯酒人生---瓦伦丁酒杯和奥丁格啤酒(杯酒人生---瓦伦丁酒杯和奥丁格啤酒)
- 中秋节买啤酒,预算超过7元试试这8种啤酒,麦香浓郁都是真啤酒(预算超过7元试试这8种啤酒)
- CellPress旗下的6 期刊,国人友刊来了解一下吧(CellPress旗下的6期刊国人友刊来了解一下吧)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9