views:

21

answers:

1

I made a lots of indexes for testing,is it gonna call any issue?then how to delete them? I aready delete them from my datastore-indexes.xml.

+1  A: 

You need to use appcfg.py from the App Engine python SDK (yes, even if you're using Java; there's an open issue to correct this oversight) to remove indexes, with the vacuum_indexes option.

Wooble