ES权威指南[官方文档学习笔记]-32 Checking whether a document XX

es:http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/doc-exists.html

下一篇:http://my.oschina.net/qiangzigege/blog/264292

内容

如果你想确定一个文档是否存在而不关注内容,
使用HEAD方法而不是GET,HEAD不返回内容,仅仅返回HTTP头。

curl -i -XHEAD /website/blog/123
文档存在时的响应:

HTTP/1.1 200 OK
Content-Type: text/plain; charset=UTF-8
Content-Length: 0


不存在时,返回404.

curl -i -XHEAD /website/blog/124
HTTP/1.1 404 Not Found
Content-Type: text/plain; charset=UTF-8
Content-Length: 0

当然,现在不存在不代表之后不存在,另一个进程可能创建了。


 

你可能感兴趣的:(elasticsearch)