0

我刚刚在 GAE 上部署了一个站点,它需要我为下拉字段(即我们的状态、状态等)暂存一些数据。

在开发中,我为每种类型的数据(例如美国州实体)创建了一个实体,并且能够使用交互式控制台通过创建实体然后调用 put() 方法来预加载数据。

现在应用程序已部署,我不知道预加载此数据的方法。您如何建议在已部署的实例中执行此操作?

检索数据时,我使用的是 SDK 版本 1.7.0、python 2.7、High Replication Datastore (HRD) 和 memcache。

在此先感谢您的帮助!

4

2 回答 2

2

If you want to do it programmatically, you may use the interactive console in production. Check out How do I activate the Interactive Console on App Engine?

You may also create a temporary request handler that'll do the job, deploy it (e.g. as a different version of the app to make it easy to delete) and launch the respective URL in your browser.

于 2012-08-22T17:58:26.607 回答
1

您可以使用bulkloader 将您的实体上传到您部署的版本。有关详细信息和示例,请参阅文档上传和下载数据

于 2012-08-22T17:48:08.757 回答