If all you want to do is to check whether a document exists—you’re not interested in the content at all—then use the HEAD method instead of the GET method. HEAD requests don’t return a body, just HTTP headers:document의 내용에는 전혀 관심이 없고, document가 존재하는지 여부만을 알고 싶다면, GET 대신에 HEAD method를 사용한다. HEAD request는 body를 반환하지 않고, HTTP header만을 반환한다.curl -i -XHEAD http://localhost:9200/website/blog/123Elasti..