Dramatiq Python 分布式任务处理库开源项目

我要开发同款
匿名用户2018年04月02日
49阅读
开发技术Python
所属分类程序开发、作业/任务调度
授权协议LGPL-3.0

作品详情

Dramatiq 是一个Python3(3.5或更高版本)分布式任务处理库,特点是简单、可靠和高性能。

Demo

import dramatiqimport requests@dramatiq.actordef count_words(url):   response = requests.get(url)   count = len(response.text.split(" "))   print(f"There are {count} words at {url!r}.")# Synchronously count the words on example.com in the current processcount_words("https://example.com")# or send the actor a message so that it may perform the count# later, in a separate process.count_words.send("https://example.com")

使用

与 RabbitMQ 一起使用:

$ pip install -U dramatiq[rabbitmq, watch]

与 Redis 一起使用:

$ pip install -U dramatiq[redis, watch]

具体使用方法阅读 Motivation 或 UserGuide。

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论