3

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"

enter image description here

maybe the right question is "how to delete the search index?"

zho
  • 643
  • 1
  • 12
  • 27

2 Answers2

3

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.

Omair Shamshir
  • 2,126
  • 13
  • 23
  • after i restart it, yes it deleted, but, after i tried to access and re-add "customerindex" the "customers" appeared again... :( – zho Jan 05 '14 at 02:47
0

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:

Community
  • 1
  • 1
Romin
  • 8,708
  • 2
  • 24
  • 28