I use Google App Engine Search API, i dont know what is the name of the feature in image below, i want to delete the "customerindex" and "customers"
maybe the right question is "how to delete the search index?"
I use Google App Engine Search API, i dont know what is the name of the feature in image below, i want to delete the "customerindex" and "customers"
maybe the right question is "how to delete the search index?"
On production you can delete the documents within a index but index will still be visible
https://developers.google.com/appengine/docs/python/search/#Python_Deleting_documents_from_an_index
If you want to delete the index from development server, just restart it.
I don't think there is a method available to just delete the search index as is in the Production environment.
You could programmatically look at deleting the documents from the search index (a batch call also exists).
A couple of other SO posts related to this are given here: