惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
B
Blog
博客园 - 叶小钗
V
Visual Studio Blog
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
博客园 - Franky
V
V2EX
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
IT之家
IT之家
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Check Point Blog
N
Netflix TechBlog - Medium
博客园 - 【当耐特】

RQ

关于长时间运行的 rqworker Python RQ (Redis Queue) 0.4.0 如何? RQ 对提高整个应用的性能很有帮助 如果基于 rq 来开发一个 MapReduce framework? RQ中,在一个Queue执行完之后触发事件的方法 rq-dashboard 关于 RQ 的任务重试机制 这里有人在生产环境使用RQ麽?
Rq 执行的的任务貌似对中文支持不佳
ergatea · 2013-02-02 · via RQ

def fetch_post_request(path, post):
http = tornado.httpclient.HTTPClient()
if not obj:
obj = db.Post()
else:
if 'hash' in obj['metadata'].keys():
uri = "http://localhost:5000/%s/post/%s?cmd=original&hash=%s" % \
(path, slug, obj.metadata['hash'])
try:
response = http.fetch(uri)
print unicode(uri, "utf-8")
response.rethrow()
obj.body = unicode(response.body, "utf-8")
print json.loads(response.headers["x-dropbox-metadata"])
obj.metadata = json.loads(response.headers["x-dropbox-metadata"])
obj.save()
=====
通过 tornado.httpclient.HTTPClient() 的代码 在执行过程中带有中文url路径就不能处理编码