1

如何刪除未使用的索引在谷歌App Engine開發服務器如何刪除未使用的索引在谷歌App Engine開發服務器

由於每gae docs,從製作中刪除未使用的索引:

appcfg.py vacuum_indexes myapp/ 

背景:

我的本地開發服務器數據存儲之後的統計數據(所以我需要清潔):

Scanned 92650 entities of total 30233678 bytes, 3231365 index entries of total 130379677 bytes and 46394 composite index entries of total 20310492 bytes. Inserted 442 new records. 

回答

0

我發現了一個間接的解決方案在https://stackoverflow.com/a/3634631/1443563

要刪除開發服務器上的所有數據,出具命令提示符下:

/path/to/google_appengine/dev_appserver.py --clear_datastore yes myappname/ 

其中myappname是你的包含您的app.yaml文件的app目錄
你需要cd到這個目錄路徑

這將刪除自動生成的索引和實體一起

如果有人知道如何做到這一點,而不刪除實體,請分享解決方案

學分:Steven Almeroth和Melllvar

相關問題