jjzjj

synctasklet

全部标签

python - 在 Google App Engine 中使用 @ndb.tasklet 或 @ndb.synctasklet

我有一个POST方法,它调用一些tasklet。这些tasklet确实有yield,我的代码中确实有一些x.put_async()。所以我不希望它在所有异步内容完成之前返回。所以我用@ndb.tasklet修饰了我所有的tasklet,它们只是一些小函数。此外,在我的POST方法之上,我有:@ndb.topleveldefpost(self):但是,在documentation它指出:Butifahandlermethodusesyield,thatmethodstillneedstobewrappedinanotherdecorator,@ndb.synctasklet;otherw