querqy.elasticsearch.rewriterstore.NodesClearRewriterCacheAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querqy-elasticsearch Show documentation
Show all versions of querqy-elasticsearch Show documentation
Querqy library for query rewriting: Querqy for Elasticsearch
package querqy.elasticsearch.rewriterstore;
import org.elasticsearch.action.ActionType;
/**
* Remove a rewriter from cache
*/
public class NodesClearRewriterCacheAction extends ActionType {
public static final String NAME = "cluster:admin/querqy/rewriter/_clearcache";
public static final NodesClearRewriterCacheAction INSTANCE = new NodesClearRewriterCacheAction(NAME);
protected NodesClearRewriterCacheAction(final String name) {
super(name, NodesClearRewriterCacheResponse::new);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy