本文整理匯總了Java中org.elasticsearch.action.delete.DeleteResponse.toString方法的典型用法代碼示例。如果您正苦於以下問題:Java DeleteResponse.toString方法的具體用法?Java DeleteResponse.toString怎麽用?Java DeleteResponse.toString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.elasticsearch.action.delete.DeleteResponse
的用法示例。
在下文中一共展示了DeleteResponse.toString方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: deleteDocument
import org.elasticsearch.action.delete.DeleteResponse; //導入方法依賴的package包/類
/**
* This method delete the matched Document
*/
@Override
public void deleteDocument() {
try {
client = ESclient.getInstant();
DeleteResponse deleteResponse = client.prepareDelete("school", "tenth", "1")
// .setOperationThreaded(false)
.get();
if (deleteResponse != null) {
deleteResponse.status();
deleteResponse.toString();
log.info("Document has been deleted...");
}
} catch (Exception ex) {
log.error("Exception occurred while delete Document : " + ex, ex);
}
}
示例2: delete
import org.elasticsearch.action.delete.DeleteResponse; //導入方法依賴的package包/類
public String delete(String index,String type,String id){
try {
if(xclient==null){
init();
}
DeleteRequest request = new DeleteRequest(index, type, id);
DeleteResponse result = xclient.delete(request);
return result.toString();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
示例3: delete
import org.elasticsearch.action.delete.DeleteResponse; //導入方法依賴的package包/類
public String delete(String index,String type,String id){
try {
if(client==null){
init();
}
DeleteResponse result = client.prepareDelete(index, type, id).execute().actionGet();
System.out.println(JSON.toJSONString(result));
return result.toString();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}