You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Ashish P <as...@gmail.com> on 2009/03/06 05:43:14 UTC

supported document types

What are the types of documents types ( Mime types ) supported for indexing
and searching in solr.
-- 
View this message in context: http://www.nabble.com/supported-document-types-tp22366114p22366114.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: supported document types

Posted by Shalin Shekhar Mangar <sh...@gmail.com>.
On Fri, Mar 6, 2009 at 10:13 AM, Ashish P <as...@gmail.com> wrote:

>
> What are the types of documents types ( Mime types ) supported for indexing
> and searching in solr.


Solr tries to be agnostic about how the content being indexed is being
created. For solr everything is a string (or number). It is upto you to
use/write an indexer which can extract data out of your mime types and send
them to solr.

Some good places to start are:
http://wiki.apache.org/solr/DataImportHandler (supports getting data from
DB/XML/HTTP)
http://wiki.apache.org/solr/ExtractingRequestHandler (supports office
documents, pdf and many others)

Hope that helps.
-- 
Regards,
Shalin Shekhar Mangar.