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

I am using solr to make search on my database, and am trying to add a new field (publisher_id of an article) in conf/schema.xml to get the value of the publisher_id after making search on my database, i didn't find any field name equivalent to this field. so how can i add it as a field in schema.xml to be returned with the searched values (body,title,date and publisher_id) of the article?

share|improve this question

1 Answer

up vote 2 down vote accepted

First of all: what kind of data is stored in publisher_id? If it is a number (int, log) so add an field with the corresponding type, like:

<field name="publisher_id" type="int" indexed="true" stored="true" />

After adding a field to the schema.xml, you have to restart the solr-instance and rebuild your index.

share|improve this answer
I tried it and i added to the select query but it didn't work, – Ruba Jul 13 '11 at 13:43
select id,headline as title, body, date as datecreated ,publisher_id from article – Ruba Jul 13 '11 at 13:44
where you added the sql statement? At the dataimporthandler-configuration? Are you sure, that publisher_id is not in the index? Are you sure, that your realey search in field publisher_id? For example with the parameter &qf=publisher_id,* !? – The Bndr Jul 13 '11 at 14:03

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.