scala 的谷歌应用程序引擎上的异步?
谷歌应用程序引擎的新(实验性、开源)Python API 充分利用了 Python 的异步功能,可以方便地允许重叠操作:http://neopythonic.blogspot.com/2011/01/new-app-engine-datastore-api.html。使用 Scala(或者可能是其他 JVM 语言)实现同样的目标需要克服哪些障碍?
The new (experimental, open sourced) python API for google app engine makes sophisticated use of Python's async capabilities to conveniently allow overlapped operations: http://neopythonic.blogspot.com/2011/01/new-app-engine-datastore-api.html. What hoops would I have to jump through to achieve the same thing using Scala (or maybe some other JVM language)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Java 异步数据存储区 API 来执行此操作。如果您想让它更加“scala-esque”,您可能需要自己编写包装器。
You can do this using the Java Async Datastore API. If you want to make it more 'scala-esque', you'll probably need to write the wrapper yourself.