在Google App Engine中异步读取URL

时间:2012-04-04 21:04:18

标签: python http google-app-engine sockets concurrency

假设我在Google App Engine中有以下代码:

from urllib import urlopen
...
data1 = urlopen(url2).read()
data2 = urlopen(url2).read()
...

为了改善延迟,我想异步地将这两个请求运行到外部URL。我怎样才能做到这一点?我知道如何使用线程池在普通Python中执行此操作,但Google App Engine似乎不支持多个线程。

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)