英文:
Google App Engine Go-Python/Java hybrid application
问题
可以将混合Go-Python/Java应用程序编写并作为一个应用程序在Google App Engine上运行,还是需要将它们拆分为两个应用程序,并通过HTTP调用进行通信?是否有关于类似这样的操作的教程或示例?
英文:
Can one write a hybrid Go-Python/Java application and run it on Google App Engine as one application, or do they need to be split into two apps and communicate with each other through HTTP calls? Is there any tutorial or example on something like this being done?
答案1
得分: 5
您可以同时部署多个“版本”的同一应用程序。每个版本都可以使用完全限定的URL进行访问,并且它们可以使用不同的语言。
英文:
You can deploy several "versions" of the same application at once. Each version will be accessible using a fully qualified URL, and they can all be in different languages.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论