On 1/21/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 1/21/07, Ryan McKinley <[EMAIL PROTECTED]> wrote:
> Are you suggesting something like this:
>
>
> <fieldtype name="splitField" class="solr.TextField"
> sortMissingLast="true" omitNorms="true">
> <multi-field>
> <tokenizer class="solr.RegexTokenizerFactory" pattern=";" />
> <filter class="solr.TrimFilterFactory" />
> </multi-field>
> <analyzer>
> ...
> </analyzer>
> </fieldtype>
Exactly, except for that <multi-field> bit... what's that?
Maybe the name is wrong, but it is something to tell the updateHandler
to use the tokenizer and filters (normally used for analysis) to
convert the single field into many fields.
I want something that is equivalent to splitting the string on the
client side and filling multiple *fields* not just tokens.
or are you suggesting:
<fieldtype name="splitField" class="solr.TextField"
sortMissingLast="true" omitNorms="true">
<tokenizer class="solr.RegexTokenizerFactory" pattern=";" />
<filter class="solr.TrimFilterFactory" />
<analyzer>
...
</analyzer>
</fieldtype>