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
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
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
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
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
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
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