Re: Exact matching without using new fields

2021-01-21 Thread Alexandre Rafalovitch
rmation retrieval END > > START advanced information retrieval with solr END > > > > And with our custom query parser, when an EXACT operator is found, I > > tokenize the query to match the first case. Otherwise pass it through. > > > > Needs custom analyzers on the

Re: Exact matching without using new fields

2021-01-21 Thread Doss
> Needs custom analyzers on the query and index sides to generate the > > correct token sequences. > > > > It's worked out well for our case. > > > > Dave > > > > > > > > > > From: gnandre

Re: Exact matching without using new fields

2021-01-19 Thread gnandre
first case. Otherwise pass it through. > > Needs custom analyzers on the query and index sides to generate the > correct token sequences. > > It's worked out well for our case. > > Dave > > > > > From: gnandre > Sent: Tuesda

Re: Exact matching without using new fields

2021-01-19 Thread David R
It's worked out well for our case. Dave From: gnandre Sent: Tuesday, January 19, 2021 4:07 PM To: solr-user@lucene.apache.org Subject: Exact matching without using new fields Hi, I am aware that to do exact matching (only whatever is provided inside double quotes should be matched) in Solr, w

Exact matching without using new fields

2021-01-19 Thread gnandre
Hi, I am aware that to do exact matching (only whatever is provided inside double quotes should be matched) in Solr, we can copy existing fields with the help of copyFields into new fields that have very minimal tokenization or no tokenization (e.g. using KeywordTokenizer or using string field