是否有一个好的实用程序/第 3 方库来管理 AppEngine 数据存储区?
我一直在使用 appengine 开发一个应用程序。我们可能会在数据存储中存储大量记录,但我发现缺乏管理这些数据的管理功能。
举个例子,没有什么好的方法可以批量删除一堆数据 - 您必须编写自己的类来执行此操作。
在我开始构建管理数据存储实体所需的管理 UI 和功能之前,我想知道是否有人知道已经编写好的第三方工具来为我执行此操作?具有基本 CRUD 功能以及批量导入和批量导出功能的东西。
我正在使用Python SDK。
I have been developing an app using appengine. We are likely to be storing a lot of records in the datastore but I find the admin functionality you are given to manage this data lacking.
As an example, there are no good ways to bulk delete a bunch of data - you have to write a class of your own to do this.
Before I start down the path of building the admin ui and features I need to manage the datastore entities, I was wondering if anyone knows of a good 3rd party tool that's already been written to do this for me? Something that has basic CRUD functionality plus bulk import and bulk export features.
I am using the Python SDK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尚未指定您使用的是 Java 还是 Python SDK,但如果您使用的是 Java App Engine,我建议使用 Objectify 框架与数据存储交互,而不是标准 JDO/JPA 方法。好多了。
You haven't specified whether you're using the Java or Python SDK, but if you're using Java App Engine, I suggest using the Objectify framework to interact with the datastore rather than the standard JDO/JPA method. It's much nicer.