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

I don't want solr to repond with document with all its text because it is too long; I want solr to repond with only highlighting in xml. My English is not well. Hope you would understand me. Can someone help me?

share|improve this question

2 Answers

If you include rows=0, you won't get any document back.

share|improve this answer
Thanks for your advice – BigStone Aug 29 '11 at 5:15

Remove the field that you do not want from fl and Solr will not return it. You can still add that field to highlighting config and Solr will return snippets from the field. You can also configure Solr to return a small part of the field data if no snippets are generated. (See hl.maxAlternateFieldLength)

share|improve this answer
Thanks, nikhil500, with your method ,I have solved it. – BigStone Aug 29 '11 at 5:13
note: it's not only about removing redundant fields, but also explicitly including a data field which is not 'score': only then, solr would omit the full-text field – Nir O. Jan 14 '12 at 19:13

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.