Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm adding a few fields using solrj. What changes need i make in the solrconfig.xml and schema.xml?

I'm new to solr and i'd love some help

share|improve this question
1  
have you read wiki.apache.org/solr/SchemaXml ? – Mauricio Scheffer Feb 15 '10 at 12:44
If you explained the fields you've added.. and perhaps we could help you out.. Otherwise it's a case of reading the Wiki as mauricio said. – CraftyFella Feb 15 '10 at 12:47

1 Answer

up vote 1 down vote accepted

You shouldn't need to change solrconfig.xml unless you are changing the way your solr instance behaves. Adding a field just requires that schema.xml include a line like:

<field name="myField" type="[field of a type defined in your schema]" indexed="true|false"  stored="true|false"  multiValued="true|false" /> 
share|improve this answer
I did that and I got an error - Unknown field. Should I change any requestHandlers? The code: SolrInputDocument doc = new SolrInputDocument(); String docID = "1112211111"; doc.addField( "id", docID, 1.0f ); doc.addField( "name", "ESFDF", 1.0f ); UpdateResponse upres = server.add( doc ); – cowboybebop Feb 17 '10 at 6:27
If you're getting an "Unknown field" then it is most likely that your incoming XML has a field that has not been declared in your schema. Can you show us the <field> elements for your id and name fields? – andyashton Feb 21 '10 at 3:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.