Is it possible to specify two analyzers per fields
for example , consider a field *F1 *( keyword analyzer) = "cheers mate"
*F2 *(keyword analyzer ) =
"hello world"
There is also a copy field *TEXT *( standard analyzer ) which will store
the terms { cheers mate hello world }
now when user perform any search we will be looking at copy field "TEXT"
only which uses standard analyzer . Suppose user search "hello word" phrase
it will not return any result
as "hello" and "world" terms are tokenized .
is it possible that I index "hello world" as it is as well in to
*TEXT*field ? i.e can I use keyword analyzer as well and standard
analyzer for
field "TEXT"
what should be better approach to handle this situation ?
--
Nipen Mark