Raven.Database.DocumentDatabase.DeleteIndex C# (CSharp) Method

DeleteIndex() public method

public DeleteIndex ( string name ) : void
name string
return void
		public void DeleteIndex(string name)
		{
			name = IndexDefinitionStorage.FixupIndexName(name);
			IndexDefinitionStorage.RemoveIndex(name);
			IndexStorage.DeleteIndex(name);
			//we may run into a conflict when trying to delete if the index is currently
			//busy indexing documents, worst case scenario, we will have an orphaned index
			//row which will get cleaned up on next db restart.
			for (var i = 0; i < 10; i++)
			{
				try
				{
					TransactionalStorage.Batch(action =>
					{
						action.Indexing.DeleteIndex(name);

						workContext.ShouldNotifyAboutWork();
					});
					return;
				}
				catch (ConcurrencyException)
				{
					Thread.Sleep(100);
				}
			}
		}