Yakob,
I can really recommend this book.
Regards,
Lukas
On Mon, Aug 9, 2010 at 3:41 PM, Yakob wrote:
> On 8/9/10, Erik Hatcher wrote:
> > An even better URL: http://www.manning.com/lucene :)
> >
> > Erik
>
> so I guess you are the one who wrote this book? :-)
> --
> http://jacobian.web.
On 8/9/10, Erik Hatcher wrote:
> An even better URL: http://www.manning.com/lucene :)
>
> Erik
so I guess you are the one who wrote this book? :-)
--
http://jacobian.web.id
-
To unsubscribe, e-mail: java-user-unsubscr..
-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de
-Original Message-
From: Yakob [mailto:jacob...@opensuse-id.org]
Sent: Sunday, August 08, 2010 11:55 AM
To: java-user@lucene.apache.org
Subject: Re: understanding lucene
On 8/8/10, Uwe Schindler wrote:
The example code you
Message
> From: Yakob
> To: java-user@lucene.apache.org
> Sent: Sun, August 8, 2010 5:54:38 AM
> Subject: Re: understanding lucene
>
> On 8/8/10, Uwe Schindler wrote:
> > The example code you found is very old (seems to be from the Version 1.x of
> > Lucene), and i
; Sent: Sunday, August 08, 2010 12:52 PM
> To: java-user@lucene.apache.org
> Subject: Re: understanding lucene
>
> ok I am sorry,I should not have said that.I didn't know that it was you
guys who
> made the book.so I will now try to activate my paypal account to buy that
bo
akob [mailto:jacob...@opensuse-id.org]
>> Sent: Sunday, August 08, 2010 11:55 AM
>> To: java-user@lucene.apache.org
>> Subject: Re: understanding lucene
>>
>> On 8/8/10, Uwe Schindler wrote:
>> > The example code you found is very old (seems to be from the
ensuse-id.org]
> Sent: Sunday, August 08, 2010 11:55 AM
> To: java-user@lucene.apache.org
> Subject: Re: understanding lucene
>
> On 8/8/10, Uwe Schindler wrote:
> > The example code you found is very old (seems to be from the Version
> > 1.x of Lucene), and is not w
On 8/8/10, Uwe Schindler wrote:
> The example code you found is very old (seems to be from the Version 1.x of
> Lucene), and is not working with Version 2.x or 3.x of Lucene (previously
> deprecated "Hits" class is gone in 3.0, "static" Field constructors were
> gone long time ago in 2.0, so you g
kemccandless.com]
> Sent: Sunday, August 08, 2010 11:44 AM
> To: java-user@lucene.apache.org
> Subject: Re: understanding lucene
>
> Small correction: the URL for the book is actually
> http://www.manning.com/hatcher3 (not /hatcher2, which is the 1st edition).
>
> Mike
ob [mailto:jacob...@opensuse-id.org]
>> Sent: Sunday, August 08, 2010 11:11 AM
>> To: java-user@lucene.apache.org
>> Subject: Re: understanding lucene
>>
>> ok I had tried to run some sample lucene application I found on the
> internet
>> such this one from
>>
[mailto:jacob...@opensuse-id.org]
> Sent: Sunday, August 08, 2010 11:11 AM
> To: java-user@lucene.apache.org
> Subject: Re: understanding lucene
>
> ok I had tried to run some sample lucene application I found on the
internet
> such this one from
>
> http://javatechniques.co
ok I had tried to run some sample lucene application I found on the
internet such this one from
http://javatechniques.com/blog/lucene-in-memory-text-search-example/
and this is the source code, I put it in pastebin so it will be easier to edit.
http://pastebin.ca/1913109
but still when I tried
On 7/29/10, Erick Erickson wrote:
> that code has way too much stuff in it for your first application.
> Hibernate
> is in there and it looks, from the description, like it tries to search your
> database.
> I'd *strongly* recommend that you don't go there.
>
> Try looking at
> http://wiki.apa
that code has way too much stuff in it for your first application.
Hibernate
is in there and it looks, from the description, like it tries to search your
database.
I'd *strongly* recommend that you don't go there.
Try looking at
http://wiki.apache.org/lucene-java/LuceneFAQ#How_do_I_start_using
Get "Lucene In Action."
http://www.manning.com/hatcher2/
On Wed, Jul 28, 2010 at 12:06 AM, Yakob wrote:
> hello everyone,
> I am starting to understand lucene in java and I am having a hard time
> in implementing it.
> I am trying to develop a java application that can do indexing,
> searching
lucene in action 2nd ed. is a good book
2010/7/28 Yakob :
> hello everyone,
> I am starting to understand lucene in java and I am having a hard time
> in implementing it.
> I am trying to develop a java application that can do indexing,
> searching and whatnot. and using lucene framework is one of
hello everyone,
I am starting to understand lucene in java and I am having a hard time
in implementing it.
I am trying to develop a java application that can do indexing,
searching and whatnot. and using lucene framework is one of the best
solution for me. only the problem was I am a bit new in thi
On Tue, Apr 13, 2010 at 11:55 AM, Burton-West, Tom wrote:
> At some point maybe the File Formats Document could be updated to make it
> clear that the tii has an entry similar to the IntexInterval'th tis entry but
> instead of holding frq/prx deltas it holds absolute pointers. Is it worth
> e
, 2010 5:27 AM
To: java-user@lucene.apache.org
Subject: Re: Understanding lucene indexes and disk I/O
Hi Tom,
Fear not: we only scan up to 128 terms, to find the specific term.
First, the terms dict index (tii) is fully loaded into RAM, and then a
binary search is done on this (in-RAM) to find t
Hi Tom,
Fear not: we only scan up to 128 terms, to find the specific term.
First, the terms dict index (tii) is fully loaded into RAM, and then a
binary search is done on this (in-RAM) to find the nearest index term
just before the term you want. Then, we seek to that spot in the
main terms dict
Hi all,
Please let me know if this should be posted instead to the Lucene java-dev list.
We have very large tis files (about 36 GB). I have not been too concerned as I
assumed that due to the indexing of the tis file by the tii file, only a small
portion of the file needed to be read. However
Have you looked at SpanNearQuery? From what you describe, it looks to be
what you want. The constructor takes slop as well as a boolean whether order
is relevant. The array of SpanQuerys would probably consist of a bunch of
SpanTermQuerys.
Best
Erick
Hello,
I'm trying to understand Lucene's slop value a little better, as
what I'm able to Google about it seems a little ambiguous.
My main goal is to search for a linear sequence of keywords in a
specific order over a given range. For instant I'd like a query of
"fate ships" to find
23 matches
Mail list logo