Re: Structured Lucene documents

2007-10-12 Thread pgwillia
group these > documents in one document that describe the article : this way, when > Lucene retrieve a requested term, i'll get the article and the page that > contains the term.I wonder if there's a way to emulate elegantly this > behavior with Solr ?Kind Regards,Pierre-Yves Landron > -- View this message in context: http://www.nabble.com/Structured-Lucene-documents-tf4234661.html#a13185053 Sent from the Solr - User mailing list archive at Nabble.com.

Re: Structured Lucene documents

2007-08-22 Thread Chris Hostetter
: aren't expandable at query time. It would be quite cool if Solr could do : query-time expansions of dynamic fields (e.g. hl.fl=page_*) however that : would require some knowledge of the dynamic fields already stored in the : index, which I don't think is currently available in either Solr or Lu

Re: Structured Lucene documents

2007-08-21 Thread Pieter Berkel
On 21/08/07, Pierre-Yves LANDRON <[EMAIL PROTECTED]> wrote: > > It seems the highlights fields must be specified, and that I can't use the > * completion to do so. > Am I true ? Is there a way to go throught this obligation ? As far as I know, dynamic fields are used mainly at during indexing and

RE: Structured Lucene documents

2007-08-20 Thread Pierre-Yves LANDRON
much ! Kind Regards, Pierre-Yves Landron > Date: Mon, 13 Aug 2007 21:57:42 +1000 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: Structured Lucene documents > > On 13/08/07, Pierre-Yves LANDRON <[EMAIL PROTECTED]> wrote: > > > >

Re: Structured Lucene documents

2007-08-13 Thread Pieter Berkel
On 13/08/07, Pierre-Yves LANDRON <[EMAIL PROTECTED]> wrote: > > Hello !Thanks Pieter,That seems a good idea - if not an ideal one - even > if it sort of an hack. I will try it as soon as possible and keep you > informed.The hl.fl parameter doesn't have to be initialized, I think, so > it won't be a

RE: Structured Lucene documents

2007-08-13 Thread Pierre-Yves LANDRON
r@lucene.apache.org> Subject: Re: Structured Lucene documents> > In theory, you could store all your pages in a single document using a> dynamic field type:> > > > Store each page in a separate field (e.g. page1, page2, page3 .. pageN) then> at query time, use the highlighting

Re: Structured Lucene documents

2007-08-08 Thread Pieter Berkel
In theory, you could store all your pages in a single document using a dynamic field type: Store each page in a separate field (e.g. page1, page2, page3 .. pageN) then at query time, use the highlighting parameters to highlight matches in the page fields. You should be able to determine the page

Structured Lucene documents

2007-08-08 Thread Pierre-Yves LANDRON
Hello,Is it possible to structure lucene documents via Solr, so one document coud fit into another one ?What I would like to do, for example :I want to retrieve full text articles, that fit on several pages for each of them. Results must take in account both the pages and the article from wich t