+1 vote
in ElasticSearch by
Which method is used to fetch the documents from Elasticsearch?

1 Answer

0 votes
by

Elasticsearch allows the users to search and fetch the documents from the database in two ways. We can use one of them accordingly -

  • By sending a GET request having a string parameter with a query, or
  • By sending a POST request which has a query in request body.
...