can you give me the Steps to configure Tika 0.9 with Solr 3.1

<requestHandler name="/update/extract" 
                  startup="lazy"
                  class="solr.extraction.ExtractingRequestHandler" >
    <lst name="defaults">
      <!-- All the main content goes into "text"... if you need to return
           the extracted text or do highlighting, use a stored field. -->
      <str name="fmap.content">text</str>
      <str name="lowernames">true</str>
      <str name="uprefix">ignored_</str>

      <!-- capture link hrefs but ignore div attributes -->
      <str name="captureAttr">true</str>
      <str name="fmap.a">links</str>
      <str name="fmap.div">ignored_</str>
    </lst>
  </requestHandler>

This one i use in solrconfig.xml to configure Please help me on that

Thanks,

link|improve this question

17% accept rate
feedback

1 Answer

Assuming you have Tika (and dependencies) installed in solr, that ought to be all you need to do.

Have you had a read through the ExtractingRequestHandler wiki page? It has quite a bit of information, and handily also has several recipes using curl to let you test that it's all working properly.

link|improve this answer
I am very new person in Tika and Solr so, how to install dependencies of Tika – Dhaval950 Apr 21 '11 at 13:19
Try using the solr example first, see the wiki page for details. – Gagravarr Apr 21 '11 at 13:43
can you give me the step by step to configure – Dhaval950 Apr 25 '11 at 12:55
feedback

Your Answer

 
or
required, but never shown

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