I am not sure on how to map ES the right way for my Laravel app. Do I need both analyzer and index set?
eg:
index: analyzed or not_analyzed analyzer: standard
Also, when I want integers and dates to be searchable/filtered, is index - not_analyzed enough?
Eg:
string mapping:
type: string index: analyzed analyzer: standard
date:
type: date index: not_analyzed
Its unclear to me if I need to use both
index: analyzed and analyzer:standard
or if it is enought to just set index