英文:
Access Google Cloud Datastore from another app/project
问题
我们在当前的Google云存储项目中有几百万条数据,主要是GPS点信息。我们希望能够在另一个托管在另一个GAE实例中的演示实例中使用所有这些GPS点。有没有什么方法可以做到?
使用Golang + Google App Engine。
英文:
We got a couple millions data in the current GAE project using Google Cloud store. Mostly GPS point information. We want to be able to use all these GPS points in another demo instance, which is hosted in another GAE instance. Anyway we can do it?
Using Golang + Google App Engine
答案1
得分: 2
你可以使用Google Cloud Datastore API来访问你的Datastore数据,包括不同的App Engine应用程序。它不支持Go语言,所以你需要混合使用Python或Java。
英文:
There is a Google Cloud Datastore API that you can use to access your Datastore data from any other deployment, including a different App Engine app. It's not available in Go, so you will have to mix in some Python or Java.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论