Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using solr-sunburnt with django. I have used nutch to crawl and index my site. I copied the nutch schema.xml to solr.

The problem I'm facing is that when I send a query, the results do not have the content field in them.

Results are the same whether I query from sunburnt or directly solr (from browser, :8983/solr/select).

What do i need to do to get content field in my results

P.S. I'm a noob when it comes to searching and solr. :)

share|improve this question
try a q=*:* to see everything from SOlr. And do consider indexing stuff yourself, instead of crawling your own site – aitchnyu May 31 '12 at 10:52
An *:* query from solr/admin returns all results, but still without the content field... – PhoenixDev May 31 '12 at 11:32
Well, the command returns each field for each doc (subject to pagination limits). Your content field has not been indexed. Please troubleshoot why. – aitchnyu May 31 '12 at 11:43

1 Answer

up vote 0 down vote accepted

Thanks for the hint aitchnyu22.

So the reason the content field is not returned in the results; is that it did not get indexed in the first place.

The reason it does not get indexed, is because the schema.xml file, that is copied from nutch into solr, has the stored parameter of the content field set to false by default.

Once you change this to true and re-index from scratch, the content field should appear in your results.

share|improve this answer

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.