blue-sky
blue-sky

Reputation: 53806

Stop datastore being deleted between app redeployments

Every time I deploy my application to google app engine, the datastore for the app is cleared. Can this be turned off so that any data that is persisted to the datastore is not deleted between app re-deployments?

To deploy I right click on the project within Eclipse, select 'google' then select 'Deploy to App Engine'

Upvotes: 0

Views: 213

Answers (2)

mjaggard
mjaggard

Reputation: 2477

Is this in the development environment? That can be the behaviour there if you or your ide are deleting the relevant files.

Upvotes: 1

mechanical_meat
mechanical_meat

Reputation: 169274

It might be the case that the datastore is not actually empty, and that something in your code is causing the data to not be displayed.

Upvotes: 3

Related Questions