Re: Lucene querying with words ending with 'ing'

2015-02-16 Thread Maisnam Ns
Thanks Erick On Tue, Feb 17, 2015 at 11:33 AM, Erick Erickson wrote: > See ReverseWildcardFilterFactory. The trick is to index the tokens > backwards, so leading wildcards become trailing ones. > > Best, > Erick > > On Mon, Feb 16, 2015 at 9:16 PM, Maisnam Ns wrote: > > Hi, > > > > Can someone

Re: Lucene querying with words ending with 'ing'

2015-02-16 Thread Erick Erickson
See ReverseWildcardFilterFactory. The trick is to index the tokens backwards, so leading wildcards become trailing ones. Best, Erick On Mon, Feb 16, 2015 at 9:16 PM, Maisnam Ns wrote: > Hi, > > Can someone help me with querying terms ending with 'ing' with Lucene. > > I tried searching with '*in

Document Ordering

2015-02-16 Thread Elliott Bradshaw
Hi, I'm interested in using Lucene to index binary objects with a specific document order, such that documents with the same key will be adjacent in the indexes. This would be done with the intent to maximize the use of the FS cache, since adjacent documents are more likely to be accessed togethe

Fwd: Document Ordering

2015-02-16 Thread Elliott Bradshaw
Hi, I'm interested in using Lucene to index binary objects with a specific document order, such that documents with the same key will be adjacent in the indexes. This would be done with the intent to maximize the use of the FS cache, since adjacent documents are more likely to be accessed togethe

Lucene querying with words ending with 'ing'

2015-02-16 Thread Maisnam Ns
Hi, Can someone help me with querying terms ending with 'ing' with Lucene. I tried searching with '*ing' , it is saying query string cannot start with * , but I would like to get all words ending with 'ing' How can I accomplish this with Lucene Regards NS

Re: Document Ordering

2015-02-16 Thread Robert Muir
Have a look at SortingMergePolicy: http://lucene.apache.org/core/4_10_0/misc/org/apache/lucene/index/sorter/SortingMergePolicy.html On Mon, Feb 16, 2015 at 9:47 PM, Elliott Bradshaw wrote: > Hi, > > I'm interested in using Lucene to index binary objects with a specific > document order, such tha

Fwd: Document Ordering

2015-02-16 Thread Elliott Bradshaw
Hi, I'm interested in using Lucene to index binary objects with a specific document order, such that documents with the same key will be adjacent in the indexes. This would be done with the intent to maximize the use of the disk block cache, since adjacent documents are more likely to be accessed