RE: Why use a different analyzer for "index" and "query"?

2020-09-10 Thread Dunham-Wilkie, Mike CITZ:EX
Hi Steven, I can think of one case. If we have an index of database table or column names, e.g., words like 'THIS_IS_A_TABLE_NAME', we may want to split the name at the underscores when indexing (as well as keep the original), since the individual parts might be significant and meaningful.

Lowercase-ing everything but acronyms

2020-09-09 Thread Dunham-Wilkie, Mike CITZ:EX
Hi SOLR list, I'm currently using the White Space tokenizer and the Lower Case filter with SOLR 7.3. I'd like to modify the logic to keep any tokens that are entirely upper case as upper case, and just apply the Lower Case filter (or something equivalent) to the remaining tokens. Is there a