How to save development data warehouse during cleanup on reboot

I need to change my local storage path for APP Engine. I followed the methods mentioned here. How can I save a local data store for GoogleAppEngineLauncher between reboots? . I tried changing the path of the data store, but this did not work. I use App Engine SDK 1.6.4, Python 2.7, and NDB as the data store on Windows 7. Also, I could not find the default data store location on my computer, as indicated in dev_appserver.py -help output (which is a temporary location, but I searched while the application was running and the data warehouse).

My goal is to stop the local cleaning of the data store every time I start (I use start).

+3
source share
1 answer

The data store MUST persist between reboots.

When you are done, on the server you will see the message β€œUse all pending transactions and save data store” in the console. If not, maybe you see the following problem (two questions, the same problem, the first of which has a workaround)

GAE SDK 1.6.4 dev_appserver datastore flush

App Engine Local Storage Content Not Saved

+2
source

All Articles