Hi Chantal,

how does your luke-output look like?

What the Schema-Browser does is, it takes the schema- & index-element:
> <str name="schema">I-S----OF---l</str>
> <str name="index">I-S----O----</str>

and does a lookup for every mentioned character in the key-hash:
> <lst name="key">
> <str name="I">Indexed</str>
> <str name="T">Tokenized</str>
> <str name="S">Stored</str>
> <str name="M">Multivalued</str>
> <str name="V">TermVector Stored</str>
> <str name="o">Store Offset With TermVector</str>
> <str name="p">Store Position With TermVector</str>
> <str name="O">Omit Norms</str>
> <str name="L">Lazy</str>
> <str name="B">Binary</str>
> <str name="f">Sort Missing First</str>
> <str name="l">Sort Missing Last</str>
> </lst>

so i guess there is something in your output, that could not be mapped
:/ i just checked this with the example schema .. so there may be
cases which are not correct.

Regards
Stefan

On Wed, Aug 24, 2011 at 10:48 AM, Chantal Ackermann
<chantal.ackerm...@btelligent.de> wrote:
> Hi all,
>
> the Schema Browser in the SOLR Admin shows me the following information:
>
>
> """
> Field: title
>
> Field Type: string
>
> Properties: Indexed, Stored, Multivalued, Omit Norms, undefined, Sort
> Missing Last
>
> Schema: Indexed, Stored, Multivalued, Omit Norms, undefined, Sort
> Missing Last
>
> Index: Indexed, Stored, Omit Norms
> """
>
> I was wandering where this "undefined" property comes from. I had a look
> at:
> http://wiki.apache.org/solr/LukeRequestHandler
> and the schema.jsp
> but to no avail so far.
>
> Could someone give me a hint? I'm just wondering whether I am missing
> some problem with my field declaration which is:
>
> <field name="title" type="string" indexed="true" stored="true"
> required="true" multiValued="true"/>
>
> Thanks a lot!
> Chantal
>
>

Reply via email to