IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

Refresh

edit

The refresh API allows to explicitly refresh one or more index, making all operations performed since the last refresh available for search. The (near) real-time capabilities depends on the index engine used. For example, the robin one requires refresh to be called, but by default a refresh is scheduled periodically.

Refresh all

edit
var r = this.ConnectedClient.Refresh();

Index / Indeces

edit
var r = this.ConnectedClient.Refresh("index");
r = this.ConnectedClient.Refresh(new [] {"index4", "index2" });

Typed (default index)

edit
var r = this.ConnectedClient.Refresh<ElasticSearchProject>();