Hi Stefan, thanks for your time!
There is a capital F which is not listed as key? But this is also the case in your example so probably I'm confusing something. Anyway, the respective output of: /admin/luke?fl=title is: <lst name="title"> <str name="type">string</str> <str name="schema">I-SM---OF---l</str> <str name="index">I-S----O----</str> <int name="docs">16697</int> <int name="distinct">8476</int> − <lst name="topTerms"> ... </lst> − <lst name="histogram"> ... </lst> </lst> </lst> − <lst name="info"> − <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> Cheers, Chantal On Wed, 2011-08-24 at 11:44 +0200, Stefan Matheis wrote: > 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 > > > >