Re: how to search a certain number of document without travelling all related documents

2013-03-14 Thread Trejkaz
On Tue, Mar 12, 2013 at 10:42 PM, Hu Jing wrote: > so my question is how to achieve a non-sort query method, this method can > get result constantly and don't travel all unnecessary doc. > > Does Lucene supply some strategies to implement this? If you want the result as soon as possible, just pa

RE: Search all Related Documents

2008-09-18 Thread Abdulrahman Galal
please anyone help me and tell me how to unsubscribe from this mailing list > From: [EMAIL PROTECTED]> Subject: Re: Search all Related Documents> Date: > Thu, 18 Sep 2008 17:35:14 -0500> To: java-user@lucene.apache.org> > You can > search the lucene and solr mailin

Re: Search all Related Documents

2008-09-18 Thread N. Hira
You can search the lucene and solr mailing lists for "denormalize" but the general response is to try one of: 1. de-normalize the data while indexing - advantage: one query - disadvantage: data repetition 2. use 2 indices - advantage: no need for repetition; this is necessa

Search all Related Documents

2008-09-18 Thread Dino Korah
Hi All, Scenario: I have 100 documents in an index and if these documents fall into 10 mutualy exclusive set; And within that set one of them is the main document. Now if I am to search on the index and group the result on 10 mutually exclusive sets. And if I have to display the result with field

RE: Related documents ...

2006-06-12 Thread Mordo, Aviran (EXP N-NANNATEK)
merge the results from the two queries (manually) Aviran http://www.aviransplace.com -Original Message- From: Dragon Fly [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 10:30 AM To: java-user@lucene.apache.org Subject: Related documents ... Hi, I have an index that contains 3 field

Related documents ...

2006-06-12 Thread Dragon Fly
Hi, I have an index that contains 3 fields: Book Id, Book Title, and Related Book Ids. For example: = Book Id Book Title Related Book Ids A0001 Title 1 A0003, A0004 A0002 Title 2 A0003 Title 3 A0001, A0002 A0004 Title 4