How to delete all datastore in Google App Engine?

后端 未结 29 1753
夕颜
夕颜 2020-11-28 01:17

Does anyone know how to delete all datastore in Google App Engine?

29条回答
  •  北海茫月
    2020-11-28 01:57

    If you're using ndb, the method that worked for me for clearing the datastore:

    ndb.delete_multi(ndb.Query(default_options=ndb.QueryOptions(keys_only=True)))
    

提交回复
热议问题