RE: solr plug-in - external document store

2008-02-06 Thread Chris Hostetter
: how do include extra fields in documents that get rendered by the : SolrQueryResponse? : : do I need to recreate the DocList? i'm kind of out of hte loop on this, but i'm pretty sure there is an open issue relating to trying to abstract this so that plugins can mask a DocList to add

RE: solr plug-in - external document store

2008-02-04 Thread Ben Incani
January 2008 4:52 PM To: solr-dev@lucene.apache.org Subject: RE: solr plug-in - external document store Thanks Ryan, I have created an UpdateHandler that adds documents to a store, based on a custom field type. Now I would like to retrieve the document directly via a solr request

RE: solr plug-in - external document store

2008-01-23 Thread Ben Incani
:[EMAIL PROTECTED] Sent: Friday, 18 January 2008 12:37 PM To: solr-dev@lucene.apache.org Subject: Re: solr plug-in - external document store You will either want to do something with a custom RequestHandler, or plug into the UpdateRequestProcessor framework http://wiki.apache.org/solr

solr plug-in - external document store

2008-01-17 Thread Ben Incani
Hi Solr Developers, I would like to implement an external document storage system using Solr. Currently I am building lucene indexes with Solr and creating a binary field, which is used to store a document. I would like to extend this implementation by storing the document in an external

Re: solr plug-in - external document store

2008-01-17 Thread Ryan McKinley
You will either want to do something with a custom RequestHandler, or plug into the UpdateRequestProcessor framework http://wiki.apache.org/solr/UpdateRequestProcessor On the search/retrieval side, you will probably want to implement a SearchComponent to fill in the stored fields: