Is there a way to remove unused indexes in a Google App Engine Java application?
The only way I could find is to create an empty Python GAE application and run the following command:
appcfg.py vacuum_indexes /path/to/myapp/
Is there a smarter way?
Update (February 16, 2011):
Starting with the GAE SDK 1.4.2, you can:
./appengine-java-sdk/bin/appcfg.sh vacuum_indexes myapp/war
source share