Google App Engine - 任务队列名称和事务
In the Google App Engine documentation it says below (see here).
Transactional tasks must not have
user-specified names.
Are tasks within transactions automatically assigned names or is there some other reason for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因是任务名称本身是事务性的,并且不可能将两个原子操作(数据存储事务和获取任务名称)组合成单个原子事务。
The reason for this is that task names are themselves transactional, and it's not possible to combine the two atomic operations (the datastore transaction and obtaining the task name) into a single atomic transaction.