appengine sdk1.2.8がprereleaseされました。 ApiProxyにmakeAsyncCallが追加されたというのはその筋では周知の事実だと思います。 これを簡単に試してみました。slim3を使わせてもらっています。 ApiConfig apiConfig = new ApiConfig(); apiConfig.setDeadlineInSeconds(10d); long asyncCallStart = System.currentTimeMillis(); Future future = DatastoreOperations.RUN_QUERY.callAsync(queryService.getDefaultQuery(), apiConfig); long asyncCallEnd = System.currentTimeMillis(); int no

