Re: Controlling dynamic field creation on guessed field

2021-03-23 Thread Alexandre Rafalovitch
Hi Steven, Yes, you can define most of the defaults on field types and then - if needed - override them per-field. Your example looks correct. You can find the relevant Ref Guide section at: https://solr.apache.org/guide/8_8/field-type-definitions-and-properties.html#field-default-properties Rega

Re: Controlling dynamic field creation on guessed field

2021-03-23 Thread Steven White
Hi Alex, I already have defined my field type which in this case is called "text_en". Here is how it looks like: .. .. Are you saying I can add to the fieldType properties such as "multiValued" and "stored"? If so, I never knew this and I don

Re: Controlling dynamic field creation on guessed field

2021-03-23 Thread Alexandre Rafalovitch
Can you just define a new field type with all those parameters you want "text_en_mine" and map to that? Regards, Alex On Tue., Mar. 23, 2021, 7:32 p.m. Steven White, wrote: > Hi Everyone, > > I have the following block of code in my solrconfig.xml > >name="add-schema-fields"> > >

Controlling dynamic field creation on guessed field

2021-03-23 Thread Steven White
Hi Everyone, I have the following block of code in my solrconfig.xml java.lang.String text_en true This is creating a new field like so: I need it to include additional field settings, so that I would have the following: I need to have be able to s