You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Open/Close Indexedit
The open and close index APIs allow you to close an index, and later on open it. A closed index has almost no overhead on the cluster (except for maintaining its metadata), and is blocked for read/write operations. A closed index can be opened which will then go through the normal recovery process.
Open and close and index by nameedit
var r = this.ConnectedClient.CloseIndex(Test.Default.DefaultIndex); r = this.ConnectedClient.OpenIndex(Test.Default.DefaultIndex);
Open and close default indexedit
var r = this.ConnectedClient.CloseIndex<ElasticSearchProject>(); r = this.ConnectedClient.OpenIndex<ElasticSearchProject>();