Re: howto replace fieldType string with text lowercase

2019-12-06 Thread Munendra S N
Tokenizer is required Regards, Munendra S N On Fri, Dec 6, 2019 at 4:14 PM Bernd Fehling wrote: > Hi Munendra S N, > > thanks for the hint about Tokenizer. > Could I omit Tokenizer at all or is it needed by LowerCaseFilterFactory? > > The field "firstname" has no facetting and sorting. > Also

Re: howto replace fieldType string with text lowercase

2019-12-06 Thread Bernd Fehling
Hi Munendra S N, thanks for the hint about Tokenizer. Could I omit Tokenizer at all or is it needed by LowerCaseFilterFactory? The field "firstname" has no facetting and sorting. Also, I want to keep the raw content as is, with capital letters and so on. I think update processors and preprocessin

Re: howto replace fieldType string with text lowercase

2019-12-06 Thread Munendra S N
Instead of StandardTokenizerFactory use KeywordTokenizerFactory which emits whole text as a single token. Once you make this change, full reindexing needs to be done. After field type, some functionality might not be performant on the field like faceting, sorting. I'm not sure if there are any out-

howto replace fieldType string with text lowercase

2019-12-06 Thread Bernd Fehling
Dear list, for one field I want to change fieldType from string to something equal to string, but only lowercase. currently: new: Is this the right replacement for "string"? Are the attributes for solr.TextField ok? Regards Bernd