码迷,mamicode.com
首页 > 其他好文 > 详细

检测一个document是否存在(checking whether a document exists)

时间:2014-05-15 17:07:40      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:blog   class   c   ext   http   int   

如果你仅仅是要检查一个document是否存在,而对document的内容不感兴趣,你可以使用HEAD进行查询

curl -i -XHEAD /website/blog/123

如果document存在将会返回如下数据:

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

如果不存在竟会返回如下数据:

HTTP/1.1404NotFound
Content-Type: text/plain; charset=UTF-8
Content-Length:0

当然,你查询的时候document不存在并不意味着在若干毫秒后也不存在,因为在你查询的时候另外一个现成或许在同时做了index的操作。

 

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

检测一个document是否存在(checking whether a document exists),布布扣,bubuko.com

检测一个document是否存在(checking whether a document exists)

标签:blog   class   c   ext   http   int   

原文地址:http://www.cnblogs.com/blog1350995917/p/3729903.html

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