Reputation: 10538
I have gone through the link and couple of tutorial on elastic search(ES) My question is does ES keep both index and documents(to be searched) under cache/memory ?
Consider I created the book in database and returned primary key is 1001. Now I store the same document under ElasticSearch.
Here is my url(http://localhost:9200/bookstore/books/1001
) for creating book with id as 1001(1001 is primary key from DB) and below
is the document
{
"title": "Java 8 Optional In Depth",
"category":"Java",
"published_date":"23-FEB-2017",
"author":"Rambabu Posa"
}
My understanding:-
title, category, published_date, author
) by default Upvotes: 0
Views: 773
Reputation: 14537
Upvotes: 0