如果你仅仅是要检查一个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)
原文地址:http://www.cnblogs.com/blog1350995917/p/3729903.html