GoogleAppEngine 的清理数据存储
如何清除 GoogleAppEngine 中的数据存储。
我想清除我的开发数据以再次进行测试,但我可以找到一种方法来做到这一点
How to clear datastore in GoogleAppEngine.
I want to clear my development data to do a test again, but I can found a way to do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您从命令行运行,请使用 --clear_datastore 标志,例如,
否则,如果您从随附的 GAE 启动器运行它,请进入应用程序的设置(双击它),并且应该有一些启动设置下显示“启动时清除数据存储”的复选框。
参考:
https://cloud.google.com/appengine/docs/python/tools /devserver#Python_Using_the_Datastore
If you are running from the commandline, use the --clear_datastore flag, e.g.,
Otherwise, if you're running it off the included GAE launcher, go into the settings of your app (double click it), and there should be a little checkbox that says "clear datastore on launch" under Launch Settings.
reference:
https://cloud.google.com/appengine/docs/python/tools/devserver#Python_Using_the_Datastore
假设“开发数据”是指开发服务器中的数据。
assuming by "development data", you mean the data in the dev server.
只需使用管理您的数据存储区(实验性)
其他一些方法 即可
App Engine:如何“重置”数据存储区?
删除 Google App Engine 中某种类型的所有数据
控制台是也是一个很好的方法。
Simply use Administering Your Datastore (Experimental)
Some Other ways
App Engine: How to "reset" the datastore?
Delete all data for a kind in Google App Engine
Interactive console is also a great way.
对于 Java,可以在使用数据存储区 - 清除数据存储区<中查看以下信息/a> 在页面末尾(截至 2013/05/10):
因此,停止您的服务器,删除该文件,然后重新启动它。
For Java, the following information can be seen in Using the Datastore - Clearing the Datastore at the end of the page (as of 2013/05/10):
So, stop your server, delete the file, and restart it up.
在本地计算机上,您可以访问:
http://localhost:8080/_ah/admin/datastore
On your local machine you can go to :
http://localhost:8080/_ah/admin/datastore