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 roberto <mi...@gmail.com> on 2009/02/17 17:57:30 UTC

Store content out of solr

Hello,

We are indexing information from diferent sources so we would like to
centralize the information content so i can retrieve using the ID
provided buy solr?

Does anyone did something like this, and have some advices ? I
thinking in store the information into a database like mysql ?

Thanks,
-- 
"Without love, we are birds with broken wings."
Morrie

Re: Store content out of solr

Posted by Peter Wolanin <pe...@acquia.com>.
Sure, we are doing essentially that with our Drupal integration module
- each search result contains a link to the "real" content, which is
stored in MySQL, etc, and presented via the Drupal CMS.

http://drupal.org/project/apachesolr

-Peter

On Tue, Feb 17, 2009 at 11:57 AM, roberto <mi...@gmail.com> wrote:
> Hello,
>
> We are indexing information from diferent sources so we would like to
> centralize the information content so i can retrieve using the ID
> provided buy solr?
>
> Does anyone did something like this, and have some advices ? I
> thinking in store the information into a database like mysql ?
>
> Thanks,
> --
> "Without love, we are birds with broken wings."
> Morrie
>



-- 
Peter M. Wolanin, Ph.D.
Momentum Specialist,  Acquia. Inc.
peter.wolanin@acquia.com

Re: Store content out of solr

Posted by Renaud Delbru <re...@deri.org>.
A common approach (for web search engines) is to use HBase [1] as a 
"Document Repository". Each document indexed inside Solr will have an 
entry (row, identified by the document URL) in the HBase table. This 
works great when you deal with a large data collection (it scales better 
than a SQL database). The counterpart is that it is slightly slower than 
a local database.

[1] http://hadoop.apache.org/hbase/
-- 
Renaud Delbru

roberto wrote:
> Hello,
>
> We are indexing information from diferent sources so we would like to
> centralize the information content so i can retrieve using the ID
> provided buy solr?
>
> Does anyone did something like this, and have some advices ? I
> thinking in store the information into a database like mysql ?
>
> Thanks,
>