Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I integrate Solr with Sharepoint with out using Lucene Connector Framework

Can I integrate Solr with Sharepoint with out using Lucene Connector Framework. if so should I make Solr Index the Sharepoint's underlying database ? Will this produce successful search results ?

like image 907
Rohan Patil Avatar asked Nov 06 '22 12:11

Rohan Patil


1 Answers

To get text into Solr, you need to be able to extract it. The Lucene Connector Framework is meant to do just that. If you somehow get the raw text another way, you may use the DataImportHandler to import information. If you index text correctly, and configure the schema well, you should be able to get successful search results.

like image 139
Yuval F Avatar answered Nov 12 '22 10:11

Yuval F