Re: Download document from solr

2010-09-07 Thread Chris Hostetter
: Subject: Download document from solr : References: : In-Reply-To: http://people.apache.org/~hossman/#threadhijack Thread Hijacking on Mailing Lists When starting a new discussion on a mailing list, please do not reply to an existing message, instead start a fresh email. Even if you change

RE: Download document from solr

2010-09-05 Thread Ephraim Ofir
@lucene.apache.org Subject: Re: Download document from solr Yes. Indexing a PDF&other types with '/extract' means that Solr finds words in the document and indexes those in a field 'content'. It does not save the binary contents of the file. You could make a request handler that fetches one

Re: Download document from solr

2010-09-02 Thread Lance Norskog
Yes. Indexing a PDF&other types with '/extract' means that Solr finds words in the document and indexes those in a field 'content'. It does not save the binary contents of the file. You could make a request handler that fetches one document and generates a redirect to the link. On Thu, Sep 2, 2010

Re: Download document from solr

2010-09-02 Thread Matteo Moci
Thank you for the suggestions, I just completed the tutorial at http://lucene.apache.org/solr/tutorial.html and i understood that in the GET parameters I can choose wt=standard (and obtain an xml structure in the results), wt=json or wt=php. All of them display the results inline, in the sense

Re: Download document from solr

2010-09-01 Thread Lance Norskog
Solr can return the list of results in JSON or php format, so that you UI can allow a download. You can write a UI in the Velocity toolkit- it's pretty easy. On Wed, Sep 1, 2010 at 8:24 AM, Matteo Moci wrote: >  Hello to All, > I am a newbie with Solr, and I am trying to understand if I can use

Re: Download document from solr

2010-09-01 Thread Erick Erickson
SOLR returns an XML packet (well, you can also specify other response formats, e.b. JSON). Within that XML, there'll be some overall response characteristics (e.g. number of matches) and a list of documents. If you do the example setup (http://lucene.apache.org/solr/tutorial.html) and submit a que

Download document from solr

2010-09-01 Thread Matteo Moci
Hello to All, I am a newbie with Solr, and I am trying to understand if I can use it form my purpose, and I was wondering how Solr lists the result documents: do they appear as "downloadable files", just like http://solr.machine.com/path/file.doc, or do I need develop another layer to take car