Async on google engine for scala?

The new (experimental, open source) python API for the google application engine allows you to successfully use the features of asynchronous Python to conveniently resolve overlap operations: http://neopythonic.blogspot.com/2011/01/new-app-engine-datastore -api.html . Which hoops will I have to jump to achieve the same using Scala (or perhaps another JVM language)?

+4
source share
1 answer

You can do this using the Java Async Datastore API . If you want to make it more "scala -esque", you probably need to write a wrapper yourself.

+1
source

Source: https://habr.com/ru/post/1334735/


All Articles