GoogleAppEngine 的清理数据存储

发布于 2024-11-25 22:14:19 字数 78 浏览 0 评论 0原文

如何清除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

一个人练习一个人 2024-12-02 22:14:19

如果您从命令行运行,请使用 --clear_datastore 标志,例如,

dev_appserver.py --clear_datastore=yes app

否则,如果您从随附的 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.,

dev_appserver.py --clear_datastore=yes app

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

以酷 2024-12-02 22:14:19
dev_appserver.py --clear_datastore myapp 

假设“开发数据”是指开发服务器中的数据。

dev_appserver.py --clear_datastore myapp 

assuming by "development data", you mean the data in the dev server.

分开我的手 2024-12-02 22:14:19

只需使用管理您的数据存储区(实验性)

其他一些方法 即可
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.

2024-12-02 22:14:19

对于 Java,可以在使用数据存储区 - 清除数据存储区<中查看以下信息/a> 在页面末尾(截至 2013/05/10):

开发 Web 服务器使用本地版本的数据存储来通过本地文件测试您的应用程序。只要临时文件存在,数据就会一直存在,并且 Web 服务器不会重置这些文件,除非您要求这样做。

该文件名为 local_db.bin,创建于应用程序的 WAR 目录的 WEB-INF/appengine- generated/ 目录中。要清除数据存储区,请删除此文件。

因此,停止您的服务器,删除该文件,然后重新启动它。

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):

The development web server uses a local version of the Datastore for testing your application, using local files. The data persists as long as the temporary files exist, and the web server does not reset these files unless you ask it to do so.

The file is named local_db.bin, and it is created in your application's WAR directory, in the WEB-INF/appengine-generated/ directory. To clear the Datastore, delete this file.

So, stop your server, delete the file, and restart it up.

謌踐踏愛綪 2024-12-02 22:14:19

在本地计算机上,您可以访问:http://localhost:8080/_ah/admin/datastore

On your local machine you can go to : http://localhost:8080/_ah/admin/datastore

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文