當前位置: 首頁>>代碼示例>>Java>>正文


Java DeleteResponse.isNotFound方法代碼示例

本文整理匯總了Java中org.elasticsearch.action.delete.DeleteResponse.isNotFound方法的典型用法代碼示例。如果您正苦於以下問題:Java DeleteResponse.isNotFound方法的具體用法?Java DeleteResponse.isNotFound怎麽用?Java DeleteResponse.isNotFound使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.elasticsearch.action.delete.DeleteResponse的用法示例。


在下文中一共展示了DeleteResponse.isNotFound方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: delete

import org.elasticsearch.action.delete.DeleteResponse; //導入方法依賴的package包/類
/**
 * 刪除索引.
 * http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-delete.html
 * @param typeName
 * @param id
 * @return
 */
public boolean delete(String typeName, String id)  throws SearchException {
       Timer.Context timer = searchMetrics.indexTimer(typeName, "delId");
	try {
		DeleteRequestBuilder deleter = client.prepareDelete(indexName,
				typeName, id);
		DeleteResponse actionGet = deleter.execute().actionGet();
           searchMetrics.indexIncr(typeName, "delId");
		if (!actionGet.isNotFound()) {
			return true;
		}
		return false;
	} catch (Exception e) {
           searchMetrics.failedIncr(typeName, "delId", e);
           logger.error("delete index Error. ", e);
           throw new SearchException("delete index Error. typeName="+typeName+", id="+id, e);
	}finally {
           timer.stop();
       }
   }
 
開發者ID:yamingd,項目名稱:argo,代碼行數:27,代碼來源:ElasticSearchTemplate.java

示例2: deleteContent

import org.elasticsearch.action.delete.DeleteResponse; //導入方法依賴的package包/類
@DELETE
@Path("/{contentId}")
@ProviderAllowed
public Object deleteContent(@PathParam("type") String type, @PathParam("contentId") String contentId,
		@QueryParam("ignore_missing") String ignoreMissing) {

	// validation
	if (contentId == null || contentId.isEmpty()) {
		return createRequiredFieldResponse("contentId");
	}
	if (type == null || type.isEmpty()) {
		return createRequiredFieldResponse("type");
	}
	try {
		Map<String, Object> provider = providerService.findProvider(getProvider());
		Map<String, Object> typeDef = ProviderService.extractContentType(provider, type);
		if (typeDef == null) {
			return createBadFieldDataResponse("type");
		}

		String dcpContentId = providerService.generateDcpId(type, contentId);

		if (ProviderService.extractPersist(typeDef)) {
			contentPersistenceService.delete(dcpContentId, type);
		}

		String indexName = ProviderService.extractIndexName(typeDef, type);
		String indexType = ProviderService.extractIndexType(typeDef, type);

		DeleteResponse dr = searchClientService.getClient().prepareDelete(indexName, indexType, dcpContentId).execute()
				.actionGet();

		if (dr.isNotFound() && !Boolean.parseBoolean(ignoreMissing)) {
			return Response.status(Status.NOT_FOUND).entity("Content not found to be deleted.").build();
		} else {
			return Response.ok("Content deleted successfully.").build();
		}
	} catch (Exception e) {
		return createErrorResponse(e);
	}
}
 
開發者ID:macanhhuy,項目名稱:dcp-api,代碼行數:42,代碼來源:ContentRestService.java


注:本文中的org.elasticsearch.action.delete.DeleteResponse.isNotFound方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。