Re: Derived Field Solr Schema

2019-06-21 Thread Muaawia Bin Arshad
Thank you so much! This is very helpful On 6/21/19, 12:35 PM, "Alexandre Rafalovitch" wrote: The easiest way is to do that with Update Request Processors: https://lucene.apache.org/solr/guide/7_7/update-request-processors.html Usually, you would clone a field and then do your

Re: Derived Field Solr Schema

2019-06-21 Thread Alexandre Rafalovitch
The easiest way is to do that with Update Request Processors: https://lucene.apache.org/solr/guide/7_7/update-request-processors.html Usually, you would clone a field and then do your transformations. For your specific example, you could use: *) FieldLengthUpdateProcessorFactory - int rather than

Derived Field Solr Schema

2019-06-21 Thread Muaawia Bin Arshad
Hi Everyone, I am fairly new to solr and I was wondering if there is a way in solr 7.7 to populate fields based on some pre-processing on other field. So let’s say I have a field called fieldX defined in the schema, I want to define another field called isFieldXgood which is just a Boolean