本文整理了Java中org.elasticsearch.client.RestHighLevelClient.exists
方法的一些代码示例,展示了RestHighLevelClient.exists
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RestHighLevelClient.exists
方法的具体详情如下:
包路径:org.elasticsearch.client.RestHighLevelClient
类名称:RestHighLevelClient
方法名:exists
[英]Checks for the existence of a document. Returns true if it exists, false otherwise. See Get API on elastic.co
[中]检查文档是否存在。如果存在,则返回true,否则返回false。见Get API on elastic.co
代码示例来源:origin: dadoonet/fscrawler
@Override
public boolean exists(String index, String id) throws IOException {
return client.exists(new GetRequest(index, id), RequestOptions.DEFAULT);
}
代码示例来源:origin: dadoonet/fscrawler
@Override
public boolean exists(String index, String id) throws IOException {
return client.exists(new GetRequest(index, getDefaultTypeName(), id), RequestOptions.DEFAULT);
}
代码示例来源:origin: dadoonet/fscrawler
@Override
public boolean exists(String index, String id) throws IOException {
return client.exists(new GetRequest(index, getDefaultTypeName(), id));
}
代码示例来源:origin: fr.pilato.elasticsearch.crawler/fscrawler-elasticsearch-client-v5
@Override
public boolean exists(String index, String type, String id) throws IOException {
return client.exists(new GetRequest(index, type, id));
}
代码示例来源:origin: dqeasycloud/easy-cloud
public boolean exists(String indexName, String type, String id) throws IOException {
try {
GetRequest getRequest = new GetRequest(
indexName,
type,
id);
return client.exists(getRequest);
} catch (ElasticsearchException exception) {
if (exception.status() == RestStatus.NOT_FOUND) {
}
}
return false;
}
内容来源于网络,如有侵权,请联系作者删除!