Apache Hadoop Get Together Berlin March 2010

2010-01-31 Thread Uwe Schindler
Hello, this is to announce the next Apache Hadoop Get Together Berlin: When: March 10th, 5p.m. Where: Newthinking store Berlin Talks scheduled so far: * Bram Smeets (JTeam/ Amsterdam): Spatial Search. * Dragan Milosevic (zanox/ Berlin: Produc

Can't get tokenization/stop works working

2010-01-31 Thread jchang
I want to be able to store a doc with a field with this as a substring: www.fubar.com And then I want this document to get returned when I query on fubar or fubar.com I assume what I should do is make www and com stop words, and make sure the field is tokenized, so it wil break it up along

RE: combine query score with external score

2010-01-31 Thread Dennis Hendriksen
Hi Steve, Thank you for your suggestions. Payloads might indeed help me to overcome the precision loss problem that I am experiencing right now. I don't think it will help me with the combining of Lucene scores with external scores however. Is there anyone who has a suggestion how to deal with th

Re: Roadmap for next release

2010-01-31 Thread Ganesh
Any reply to this thread? - Original Message - From: "Ganesh" To: Sent: Thursday, January 28, 2010 2:35 PM Subject: Roadmap for next release Hello all, Please provide me the information related to road map for the next release. This information will be really helpful to plan our pro

Re: best way to compare Documents

2010-01-31 Thread Shashi Kant
or a CRC On Sun, Jan 31, 2010 at 11:58 AM, Shashi Kant wrote: > If all you want is to flag a document "dirty" you could hash the > fields in the document and and check for an update. > > > > On Sun, Jan 31, 2010 at 11:51 AM, Robert Koberg wrote: >> Hi, >> >> Just coming back to Lucene after a fe

Re: best way to compare Documents

2010-01-31 Thread Shashi Kant
If all you want is to flag a document "dirty" you could hash the fields in the document and and check for an update. On Sun, Jan 31, 2010 at 11:51 AM, Robert Koberg wrote: > Hi, > > Just coming back to Lucene after a few years. > > Is there some convenient way to compare Lucene Documents? > > I

best way to compare Documents

2010-01-31 Thread Robert Koberg
Hi, Just coming back to Lucene after a few years. Is there some convenient way to compare Lucene Documents? I want to check if I should update a document based on whether field values have changed and whether fields have been added or removed. Is it as simple as: newDoc.equals(oldDoc) ? I