I have created a few indexes and in an attempt to build the management side of things, I have found that I can't delete an individual index:
Search::index('users')->deleteIndex();
If I then search for a result, it seems the index still exists. If I then:
curl -XDELETE 'http://localhost:9200/users/'
And repeat the search, the index has been deleted.
In this case I am using ElasticSearch.
I'll take a look to see if I can figure out what is going wrong here. In the meantime, if you can point me in the right direction, that would be awesome.
Hey,
Firstly, thanks for this package - Awesome.
I have created a few indexes and in an attempt to build the management side of things, I have found that I can't delete an individual index:
Search::index('users')->deleteIndex();
If I then search for a result, it seems the index still exists. If I then:
curl -XDELETE 'http://localhost:9200/users/'
And repeat the search, the index has been deleted.In this case I am using ElasticSearch.
I'll take a look to see if I can figure out what is going wrong here. In the meantime, if you can point me in the right direction, that would be awesome.
Cheers.