time.sleep(1000)在Twisted的dbapi的runInteraction中做什么?

时间:2015-08-29 10:14:29

标签: scrapy twisted

我正在使用Twisted的adbapi将项目异步写入项目管道中的SQL数据库。如果我在Twisted dbapi的runInteraction中插入“time.sleep(1000)”会发生什么?

Twisted是否只看到代码阻塞并跳转到其他操作直到阻止停止? (即我可以在runInteraction中执行任何我想要的阻塞),或者我刚刚阻止了代码?

1 个答案:

答案 0 :(得分:1)

runInteraction runs in a thread并且不会阻止主反应堆线程。