How can I remove all entities or reset the local datastore on my dev_appserver? I accidentally recursively called a function to create an entity when testing.
I am using the Google App-engine SDK on Vista with Python.
|
How can I remove all entities or reset the local datastore on my dev_appserver? I accidentally recursively called a function to create an entity when testing. I am using the Google App-engine SDK on Vista with Python.
| ||||
|
feedback
|
See here for more info. Shorthand version:
| ||||
|
feedback
|
|
A useful thing to do is to always specify --datastore_path, e.g. --datastore_path=test.datastore. To delete it you can then just delete the file. You can also keep copies and swap them in and out. And the store will persist over reboots (when /tmp/ the default location for it on Linux anyway, gets cleared) | |||
|
feedback
|
|
in production, this may also come in handy (or be a security nightmare).
| |||
feedback
|