How to delete all datastore in Google App Engine?

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

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

29条回答
  •  自闭症患者
    2020-11-28 02:00

    You have 2 simple ways,

    #1: To save cost, delete the entire project

    #2: using ts-datastore-orm:

    https://www.npmjs.com/package/ts-datastore-orm await Entity.truncate(); The truncate can delete around 1K rows per seconds

提交回复
热议问题