会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
立文
博客园
首页
新随笔
联系
订阅
管理
2019年12月6日
rabbitMQ 的简单模式
摘要: 生产者: # !/usr/bin/env python # -*- coding: utf-8 -*- import pika # 创建连接对象 connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhos
阅读全文
posted @ 2019-12-06 23:25 立文
阅读(212)
评论(0)
推荐(0)
编辑
redis 的发布订阅
摘要: Redis 订阅者 #-*- coding: utf8 -*- import redis r = redis.Redis() # 获取订阅对象 pub = r.pubsub() pub.subscribe("104.5fm") # pub.parse_response() while True: m
阅读全文
posted @ 2019-12-06 21:45 立文
阅读(89)
评论(0)
推荐(0)
编辑
redis 的管道操作
摘要: #-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 支持事务 pipe = r.pipeline(transaction=True) pipe
阅读全文
posted @ 2019-12-06 20:41 立文
阅读(573)
评论(0)
推荐(0)
编辑
redis 的其他常用操作
摘要: #-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 删除操作 print(r.keys()) r.delete(*["xxx"]) # 要加星
阅读全文
posted @ 2019-12-06 20:29 立文
阅读(69)
评论(0)
推荐(0)
编辑
redis 的链表操作
摘要: #-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 增加操作 r.lpush("stu","zhangsan","lisi","wangwu"
阅读全文
posted @ 2019-12-06 20:15 立文
阅读(267)
评论(0)
推荐(0)
编辑
redis 的哈希操作
摘要: #-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 设置获取 r.hset("info", "name", "alex") print(r.h
阅读全文
posted @ 2019-12-06 20:05 立文
阅读(128)
评论(0)
推荐(0)
编辑
redis 的字符串操作
摘要: import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 设置有效时间 r.set("gender","male",20) # 当name 不存在时,执行设置操作 r.setnx("salar
阅读全文
posted @ 2019-12-06 18:10 立文
阅读(214)
评论(0)
推荐(0)
编辑
redis 的数据类型
摘要: key:value 字符串 链表 Hash 集合 有序集合
阅读全文
posted @ 2019-12-06 17:30 立文
阅读(94)
评论(0)
推荐(0)
编辑
Redis的基本操作
摘要: import redis # 简单连接 r = redis.Redis() print(r.get("name"))r.set("age",9000) # 基于连接池 pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool
阅读全文
posted @ 2019-12-06 17:22 立文
阅读(79)
评论(0)
推荐(0)
编辑
公告