
消息队列
ItisNagatoYuki
这个作者很懒,什么都没留下…
展开
-
windows RabbitMq 安装
下载地址 https://www.rabbitmq.com/install-windows.html#installer 需要安装Erlang https://www.erlang.org/downloads 进入安装目录的sbin 启动管理命令 .\rabbitmq-plugins.bat enable rabbitmq_management 地址栏打开 http://localhost:156...原创 2019-12-17 11:53:23 · 110 阅读 · 0 评论 -
celery 入门
windows 下安装 erlang rabbitmq http://erlang.org/download/otp_win64_22.0.exe https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.16/rabbitmq-server-3.7.16.exe 测试代码 # -*- coding: utf-8...转载 2019-07-17 15:14:08 · 159 阅读 · 2 评论 -
Rabbitmq 极简实现
参考https://www.jianshu.com/p/9a137cff153c加以修改 web 监控台启动 cmd进入rabbitmq安装目录sbin目录 rabbitmq-plugins enable rabbitmq_management rabbitmqctl start_app http://localhost:15672 账号 guest 密码 guest...原创 2019-09-06 17:26:20 · 128 阅读 · 0 评论 -
pika 消费者模型
# -*- coding: utf-8 -*- # by dl # !/usr/bin/env python # coding=utf8 import pika connection = pika.BlockingConnection(pika.ConnectionParameters( 'localhost')) channel = connection.channel() cha...原创 2019-09-09 16:33:33 · 394 阅读 · 0 评论 -
pika 生产者模型
# -*- coding: utf-8 -*- # by dl # !/usr/bin/env python # coding=utf8 import pika connection = pika.BlockingConnection(pika.ConnectionParameters( 'localhost')) channel = connection.channel() cha...原创 2019-09-09 16:32:20 · 216 阅读 · 0 评论