index enforcing query terms to appear within the same sentence

2011-03-03 Thread Michael Wiegand
Hi, I would like to create an index with Lucene to a document collections of text files. The index should be created in such a way, that for the search I can enforce that query term A and query term B are contained within the same sentence. How should implement the index? Should I have for e

Re: Finding the term positions of a document

2011-03-03 Thread Lahiru Samarakoon
Hi Ian, Yes, It does the job for me :) . Thank you, Best Regards, Lahiru

RE: Lucene paid support

2011-03-03 Thread Jarrin, David
Very helpful! Thank you Ahmet! -David. -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: Thursday, March 03, 2011 5:24 PM To: java-user@lucene.apache.org Subject: RE: Lucene paid support > Thanks for the quick reply. Sorry I was vague in my message. We are > consid

RE: Lucene paid support

2011-03-03 Thread Ahmet Arslan
> Thanks for the quick reply. Sorry I was vague in my > message. We are considering using Lucene in a commercial > product that we sell and as we do with other third-party > products we want to make sure that we have timely (i.e. > priority) access to technical support that can help us > resolve is

RE: Lucene paid support

2011-03-03 Thread Jarrin, David
Paul, Thanks for the quick reply. Sorry I was vague in my message. We are considering using Lucene in a commercial product that we sell and as we do with other third-party products we want to make sure that we have timely (i.e. priority) access to technical support that can help us resolve issu

Re: Lucene paid support

2011-03-03 Thread Paul Libbrecht
David, I'm sure that if you request something more precise you might get enthusiasts over here easily. I heard several committers of Lucene have gone into LucidImagination and they offer paid services specialized for Lucene. hope it helps. paul Le 3 mars 2011 à 21:13, Jarrin, David a écrit :

Fwd: [Announce] Now Open: Call for Participation for ApacheCon North America

2011-03-03 Thread Grant Ingersoll
Begin forwarded message: > From: Grant Ingersoll > Date: March 3, 2011 3:52:05 PM EST > To: u...@mahout.apache.org, solr-u...@lucene.apache.org, > java-user@lucene.apache.org, opennlp-u...@incubator.apache.org > Subject: Fwd: [Announce] Now Open: Call for Participation for ApacheCon North > A

Fwd: [Announce] Now Open: Call for Participation for ApacheCon North America

2011-03-03 Thread Grant Ingersoll
Begin forwarded message: > From: Sally Khudairi > Date: March 3, 2011 3:10:17 PM EST > To: annou...@apachecon.com > Subject: [Announce] Now Open: Call for Participation for ApacheCon North > America > Reply-To: s...@apache.org > > Call for Participation > ApacheCon North America 2011 > 7-11

Maven Lucene Plugin : Feedback

2011-03-03 Thread Paritosh Ranjan
Hi, I have released an open source project maven-lucene-plugin hosted at SourceForge. Its a maven plugin with which index can be created (without writing any code ) from a file source. The structure of the index can be defined in a file lucene

Re: Backup or replication option with lucene

2011-03-03 Thread Michael McCandless
On Thu, Mar 3, 2011 at 12:03 AM, Ganesh wrote: > Any suggestions. We are planning to move towords cloud and its become a > mandatory requirement to have backup or replication of search db. If you use Lucene's SnapshotDeletionPolicy, then you can take a hot backup of the index (ie, backup w/o bl

Re: Lucene nightly build: similarity score per field

2011-03-03 Thread Robert Muir
On Thu, Mar 3, 2011 at 10:25 AM, Patrick Diviacco wrote: > I've downloaded Lucene nightly build because I need to customize the > similarity *per field*. > > However I don't see the field parameter passed to the methods to compute the > score such as "tf" and "idf"... > > how can I implement diffe

Lucene nightly build: similarity score per field

2011-03-03 Thread Patrick Diviacco
I've downloaded Lucene nightly build because I need to customize the similarity *per field*. However I don't see the field parameter passed to the methods to compute the score such as "tf" and "idf"... how can I implement different similarities score per document field then ? thanks

Re: Finding the term positions of a document

2011-03-03 Thread Ian Lea
There's code in http://stackoverflow.com/questions/1311199/finding-the-position-of-search-hits-from-lucene which looks like it might do what you want. -- Ian. On Thu, Mar 3, 2011 at 9:25 AM, Lahiru Samarakoon wrote: > Hi All, > > I have a document  and a list of terms. For each term, I want to

Finding the term positions of a document

2011-03-03 Thread Lahiru Samarakoon
Hi All, I have a document and a list of terms. For each term, I want to find the position of that term in the given document. Please advice. Thanks, Lahiru