码迷,mamicode.com
首页 > Windows程序 > 详细

elasticsearch 中文API 基于查询的删除(九)

时间:2016-05-09 01:41:58      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:

基于查询的删除API

基于查询的删除API允许开发者基于查询删除一个或者多个索引、一个或者多个类型。下面是一个例子。

import static org.elasticsearch.index.query.FilterBuilders.*;
import static org.elasticsearch.index.query.QueryBuilders.*;

DeleteByQueryResponse response = client.prepareDeleteByQuery("test")
        .setQuery(termQuery("_type", "type1"))
        .execute()
        .actionGet();

elasticsearch 中文API 基于查询的删除(九)

标签:

原文地址:http://www.cnblogs.com/bmaker/p/5472438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!