开发者

Is there a good utility / 3rd party library to manage the AppEngine datastore?

开发者 https://www.devze.com 2023-01-16 17:16 出处:网络
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.

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开发者_如何学Python 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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消