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.

I am now to Solr and Nutch. I have a question on the field mapping in solr / nutch schema.xml. I want solr/nutch pickup some keywords from one of my website. I know that the schema.xml has a field mapping section to allow me to do so. What I want to know is how should I put the keyword field in the HTML ? Should I just hte HTML hidden field:

<input type="hidden" name="keyword" .... /> 

Or should I use the

<meta/> 

tag ?

share|improve this question

1 Answer

There was work done on extracting element from HTML by XPATH, so you can check on it.

However, using meta tags can be a better option as the html pages are usually malformed for the xpath expression. You can use Index Metatags with Nutch to extract the metatag and populate the fields in Solr.

share|improve this answer
Thanks, the "Index Meatags" works great ! – user1773304 Nov 21 '12 at 9:24
great. If it works for you please accept the answer. – Jayendra Nov 21 '12 at 9:36

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.