python之上下文管理、redis的发布订阅、rabbitmq
使用with打开文件的方式,是调用了上下文管理的功能
#打开文件的两种方法:
f = open('a.txt','r')
with open('a.txt','r') as f
实现使用with关闭socket
import contextlib
import socket
@contextlib.contextmanage
def Sock(ip,port):
socket = socket.socket()
socket.bind((ip,port))
socket.listen(5)
try:
yield socket
finally:
socket.close()
#执行Sock函数传入参数,执行到yield socket返回值给s,执行with语句体,执行finally后面的语句
with Sock('127.0.0.1',8000) as s:
print(s)
redis的发布订阅
class RedisHelper:
def __init__(self):
#调用类时自动连接redis
self.__conn = redis.Redis(host='192.168.1.100')
def public(self, msg, chan):
self.__conn.publish(chan, msg)
return True
def subscribe(self, chan):
pub = self.__conn.pubsub()
pub.subscribe(chan)
pub.parse_response()
return pub
#订阅者
import s3
obj = s3.RedisHelper()
data = obj.subscribe('fm111.7')
print(data.parse_response())
#发布者
import s3
obj = s3.RedisHelper()
obj.public('alex db', 'fm111.7')
RabbitMQ
#消费者
import pika connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
channel = connection.channel()#创建对象 channel.queue_declare(queue = 'wocao')
def callback(ch,method,properties,body):
print("[x] Received %r"%body) channel.basic_consume(callback,queue = 'wocao',no_ack = True)
print('[*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming() #生产者
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
channel = connection.channel()
channel.queue_declare(queue = 'wocao')#指定一个队列,不存在此队列则创建
channel.basic_publish(exchange = '',routing_key = 'wocao',body = 'hello world!')
print("[x] Sent 'hello world!")
connection.close()
exchange type类型
#生产者
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(
host='192.168.11.87'))
channel = connection.channel()
#fanout类型,对绑定该exchange的队列实行广播
channel.exchange_declare(exchange='logs_fanout',
type='fanout') # 随机创建队列
result = channel.queue_declare(exclusive=True)
queue_name = result.method.queue
# 绑定exchange
channel.queue_bind(exchange='logs_fanout',
queue=queue_name) print(' [*] Waiting for logs. To exit press CTRL+C') def callback(ch, method, properties, body):
print(" [x] %r" % body) channel.basic_consume(callback,
queue=queue_name,
no_ack=True) channel.start_consuming()
#消费者
import pika #发送方
connection = pika.BlockingConnection(pika.ConnectionParameters(
host='192.168.11.87'))
channel = connection.channel() channel.exchange_declare(exchange='logs_fanout',
type='fanout') message = "what's the fuck"
#设置exchange的名
channel.basic_publish(exchange='logs_fanout',
routing_key='',
body=message)
print(" [x] Sent %r" % message)
connection.close()
#根据关键字发送指定队列
#生产者(发布者)
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(
host = '127.0.0.1'))
channel = connection.channel() channel.exchange_declare(exchange='direct_logs_1',
type='direct') # 关键字发送到队列
#对error关键字队列发送指令
severity = 'error'
message = ''
channel.basic_publish(exchange = 'direct_logs_1',
routing_key = severity,
body = message)
print('[x] Sent %r:%r'%(severity,message))
connection.close()
#消费者(订阅者)
import pika
#消费者
connection = pika.BlockingConnection(pika.ConnectionParameters(
host = '127.0.0.1'))
channel = connection.channel()
channel.exchange_declare(exchange='direct_logs_1',
type = 'direct')#关键字发送到队列 result = channel.queue_declare(exclusive=True)
queue_name = result.method.queue
serverities = ['error','info','warning']
for severity in serverities:
channel.queue_bind(exchange='direct_logs_1',
queue = queue_name,
routing_key = severity)
def callback(ch,method,properties,body):
print('[x] %r:%r'%(method.routing_key,body)) channel.basic_consume(callback,
queue = queue_name,
no_ack = True)
channel.start_consuming()
#实现消息不丢失接收方
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host = '10.211.55.4'))
channel = connection.channel()
channel.queue_declare(queue = 'hello') def callback(ch,method,properties,body):
print('redeived %s'%body)
import time
time.sleep(10)
print('ok')
ch.basic_ack(delivery_tag= method.delivery_tag)
#no_ack = False接收方接受完请求后发送给对方一个接受成功的信号,如果没收到mq会重新将任务放到队列
channel.basic_consume(callback,queue = 'hello',no_ack=False)
print(' Waiting for messages.To exit press CTRL+C')
channel.start_consuming()
#发送方
#实现消息不丢失
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host = '10.211.55.4'))
channel = connection.channel()
channel.queue_declare(queue = 'hello',durable = True)
channel.basic_publish(exchange = '',routing_key = 'hello world',
properties = pika.BasicProperties(
delivery_mode=2,
))#发送方不丢失,发送方保持持久化
print(' Waiting for messages.To exit press CTRL+C')
channel.start_consuming()
#接收方
import pika connection = pika.BlockingConnection(pika.ConnectionParameters(host='192.168.11.100'))
channel = connection.channel() channel.queue_declare(queue='hello', durable=True)
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
import time
time.sleep(10)
print 'ok'
ch.basic_ack(delivery_tag = method.delivery_tag)
channel.basic_consume(callback,
queue='hello',
no_ack=False)
channel.start_consuming()
RabbitMQ队列中默认情况下,接收方从队列中获取消息是顺序的,例如:接收方1只从队列中获取奇数的任务,接收方2只从队列中获取偶数任务
import pika connection = pika.BlockingConnection(pika.ConnectionParameters(host='192.168.11.100'))
channel = connection.channel()
channel.queue_declare(queue='hello')
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
import time
time.sleep(10)
print 'ok'
ch.basic_ack(delivery_tag = method.delivery_tag)
#表示队列不分奇偶分配,谁来取任务就给谁
channel.basic_qos(prefetch_count=1)
channel.basic_consume(callback,
queue='hello',
no_ack=False)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
RabbitMQ会重新将该任务添加到队列中
python之上下文管理、redis的发布订阅、rabbitmq的更多相关文章
- Python之上下文管理器
# -*- coding: utf-8 -*- #python 27 #xiaodeng #Python之上下文管理器 #http://python.jobbole.com/82620/ #语法形式: ...
- Python之上下文管理
http://www.cnblogs.com/coser/archive/2013/01/28/2880328.html 上下文管理协议为代码块提供包含初始化和清理操作的上下文环境.即便代码块发生异常 ...
- Redis之发布订阅
一 什么是发布订阅 发布订阅模式又叫观察者模式,它定义对象间的一种一对多的依赖关系,当一个对象的状态发生改变时,所有依赖它的对象都将得到通知 Redis 发布订阅(pub/sub)是一种消息通信模式: ...
- [翻译] C# 8.0 新特性 Redis基本使用及百亿数据量中的使用技巧分享(附视频地址及观看指南) 【由浅至深】redis 实现发布订阅的几种方式 .NET Core开发者的福音之玩转Redis的又一傻瓜式神器推荐
[翻译] C# 8.0 新特性 2018-11-13 17:04 by Rwing, 1179 阅读, 24 评论, 收藏, 编辑 原文: Building C# 8.0[译注:原文主标题如此,但内容 ...
- Redisson 分布式锁实现之前置篇 → Redis 的发布/订阅 与 Lua
开心一刻 我找了个女朋友,挺丑的那一种,她也知道自己丑,平常都不好意思和我一块出门 昨晚,我带她逛超市,听到有两个人在我们背后小声嘀咕:"看咱前面,想不到这么丑都有人要." 女朋友 ...
- redis的发布订阅模式
概要 redis的每个server实例都维护着一个保存服务器状态的redisServer结构 struct redisServer { /* Pubsub */ // 字典,键为频道, ...
- StackExchange.Redis 使用-发布订阅 (二)
使用Redis的发布订阅功能 redis另一个常见的用途是发布订阅功能 . 它非常的简单 ,当连接失败时 ConnectionMultiplexer 会自动重新进行订阅 . ISubscriber s ...
- .net core 使用Redis的发布订阅
Redis是一个性能非常强劲的内存数据库,它一般是作为缓存来使用,但是他不仅仅可以用来作为缓存,比如著名的分布式框架dubbo就可以用Redis来做服务注册中心.接下来介绍一下.net core 使用 ...
- redis的发布订阅模式pubsub
前言 redis支持发布订阅模式,在这个实现中,发送者(发送信息的客户端)不是将信息直接发送给特定的接收者(接收信息的客户端),而是将信息发送给频道(channel),然后由频道将信息转发给所有对这个 ...
随机推荐
- 线程属性总结 线程的api属性
http://blog.csdn.net/zsf8701/article/details/7842392 //线程属性结构如下:typedef struct{ int etachstate; //线程 ...
- 2017.11.2 JavaWeb----第六章 Servlet技术
JavaWeb ------第六章 Servlet技术 (1)在Web应用程序开发中,一般由JSP JavaBean技术和 Servlet技术的结合实现MVC开发模式.在MVC开发模式中将Web程序的 ...
- node.js 练习2 (调用函数)
1. 调用本地 函数 (1) 创建 n2-1.js ,并输入代码 (2) 运行localhhost:8000 (3)在浏览器中 查看 (4)在cmd中查看 2.调用外部 函数 (1) 创建n2-2. ...
- 牛客国庆day 6 A
题目链接 : https://ac.nowcoder.com/acm/contest/206/A 这个题去年有幸去秦皇岛参加集训,见过这道题,当时特别菜还不会网络流,现在学了一点发现这个网络流还是比较 ...
- Advanced Memory Allocation 内存分配进阶[转]
May 01, 2003 By Gianluca Insolvibile in Embedded Software Call some useful fuctions of the GNU C l ...
- openstack kilo 命令行
把下面内容放到.bashrc中,或者直接执行也行. export OS_USERNAME=adminexport OS_PASSWORD=admin #根据实际密码来设 ...
- git(将现有项目加入osChina)
将现有项目加入osChina 在osChina中创建项目 注意不要初始化项目.(其实初始化也没有什么问题,可以直接clone到本地,再把项目添加进去就行了,后续操作一样的) 项目现在基本为空,得到项目 ...
- OB如何创建租户
一. 先导知识: 资源隔离是保证用户间相互不受影响的重要手段.数据库的资源隔离主要有以下方式: l 服务器隔离 l 数据库隔离:sqlserver.oceanbase.oracle ...
- php-安装与配置-未完待续2
一,准备工作 在入门指引中,我们已经知道PHP的3个应用领域,不同的场景,需要安装的东西是不同的.具体如下: 服务器端脚本,在通常情况下,需要三样东西:PHP 自身.一个 web 服务器和一个 web ...
- openwrt(三) 固件的烧录
导航: 方法1: tftp: 方法2: 在线升级 方法3: BIOS烧录 方法1:TFTP 这应该是最万能的一种方法了.TFTP是一种依靠网口传送数据的一种通信协议,没错,只是传输数据,并不是烧录,所 ...