I have created a SOLR DB that appears to be working in general. Here are the fields from my schema: <field name="PID" type="string" indexed="TRUE" stored="TRUE" required="TRUE" /> <field name="INST_NAME" type="text_en_splitting" indexed="TRUE" stored="TRUE" required="TRUE" /> <field name="INST_TYPE" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="MSTREET" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="MCITY" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="MSTATE" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="MZIPCODE" type="string" indexed="TRUE" stored="TRUE" /> <field name="PSTREET" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="PCITY" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="PSTATE" type="text_general" indexed="TRUE" stored="TRUE" /> <field name="PZIPCODE" type="string" indexed="TRUE" stored="TRUE" /> <field name="PARENTPID" type="string" indexed="TRUE" stored="TRUE" /> <field name="PARENT_INST" type="text_en_splitting" indexed="TRUE" stored="TRUE" /> <field name="GEO_LAT" type="tdouble" indexed="TRUE" stored="TRUE" /> <field name="GEO_LONG" type="tdouble" indexed="TRUE" stored="TRUE" /> <field name="LAMEMBERID" type="string" indexed="TRUE" stored="TRUE" /> <field name="CUSTOMER_ID" type="string" indexed="TRUE" stored="TRUE" />
I loaded 20000 documents When I do a query using the Admin tool: INST_NAME:KENTUCKY TECH PADUCAH (There is a docment in the that meets this query exactly) It appears to only look at the first keyword "NATIONAL" If I break the query up: INST_NAME:NATIONAL INST_NAME:PARK INST_NAME:COMMUNITY INST_NAME:COLLEGE The query works as expected. The matching doc has a score of 7.996526, and there are a bunch of similar matches with lower scores Help. I'm sure it's something basic. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Basic-SOLR-help-needed-tp3759855p3759855.html Sent from the Solr - User mailing list archive at Nabble.com.
