Re: classNotFound for sql handler

2024-07-15 Thread Eric Pugh
It would be nice if the exception that was raised had some sort of hint to what you need to do to fix it! I suspect we see this question more and more as folks adopt the new modularized Solr! > On Jul 13, 2024, at 2:34 AM, Derrick Cui wrote: > > thanks Christos, > > it works > > On Fri, 1

Lowercase Indexing

2024-07-15 Thread Dario.Viva
Dear Solr Team I have documents where I want to index a field twice. One time as a normal string, and another time as a lowercase string. I have not changed the default managed-shema.xml. There the two corresponding dynamic fields are configured. [...] [...] [...] But still, the content of

Re: Lowercase Indexing

2024-07-15 Thread ufuk yılmaz
Hi Dario How does the field definition for type="lowercase" look like? —ufuk — > On Jul 16, 2024, at 1:06, wrote: > > type="lowercase"

Re: Lowercase Indexing

2024-07-15 Thread Jeremy Buckley - IQS-C
Did you try the sort? Operations applied in the indexing analysis chain do not affect the stored version of the field, the one you see in search results. They only affect the internal lucene indexed version of the field, which is what will be used for sorting. The Solr admin UI provides an Analysi