InterviewSolution
Saved Bookmarks
| 1. |
What is a document in reference to the Elasticsearch? What can basic operations be performed on a document? |
|
Answer» In Elasticsearch a document refers to the ROW with the relatable database. More or less, they are similar. The major difference among them is that in each document an index can have a variant structure but comprising the same data type for similar fields is required. Whereas, in a document, every field or structure having different data can exist multiple times. Fields can ALSO CONTAIN different documents at the same time. Elasticsearch is a document-oriented search engine platform where the documents are stored in sequence.
|
|