Im running Solr 1.4 on Ubuntu 10.04 (installed via apt-get solr-tomcat) and it seems to be working fine. Im having some difficulty finding any coherent info on how to index documents though. Im new to SOLR so bear with me! I have a folder (/mnt/folder) that is a mounted windows share, which contains Word and PDF files that I would like indexed, whats the easiest way to get SOLR to index the entire folder?

The documentation for SOLR is pretty poor, its impossilbe to find any decent tutorials on getting things done with it so any help is greatly appreciated!

S

link|improve this question
feedback

3 Answers

Take a look at the Solr wiki, it's a pretty thorough documentation.

In particular see the ExtractingRequestHandler, which allows you to index binary files like Word and PDF documents. Here's an introduction to the topic.

If the wiki isn't enough for you, there's also a great book about Solr.

link|improve this answer
feedback

I have found the same challenges with the core documentation, but I came across this very useful reference guide from LucidImagination, which helped to clarify a lot of thing about SOLR:

http://www.lucidimagination.com/Downloads/LucidWorks-for-Solr/Reference-Guide

link|improve this answer
feedback

Processing rich documents with Solr: http://wiki.apache.org/solr/UpdateRichDocuments

link|improve this answer
Oh, just recognized, that this method has been replaced by the ExtractingRequestHandler, like Mauricio suggested. (quote from solr wiki: This page covers the RichDocumentHandler as created by Eric Pugh and Chris Harris. Solr's Tika integration, which will replace the RichDocumentHandler is described at ExtractingRequestHandler. This page is being preserved here for those users who currently use the RichDocumentHandler) – Daniel Aug 26 '11 at 8:21
feedback

Your Answer

 
or
required, but never shown

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