Suppose I have webpages and I am storing those as documents in elastic search. Now i want to understand will elastic seach tokenize each word title as well as content? Or should we define a key in document for which elasticsearch will extract words and convert to tokens for that key. Also if it is tokenizing each key can you share sample format in which they will be stored by elastic search
title: "Getting started with elastic search",
content: "Elastic search is a popular tool..."
},
{
title: "Top 10 latest techs",
content: "This blog will discuss about top 10 latest techs in market.."
}]```
Tokens: keywords mapped to document ids in which they are found
"Elastic": [1]
"Techs": [2]