.
i thought it was a lucene user list, not a dbsight one
--- sven
Le mercredi 13 juillet 2005 à 17:47:14, vous écriviez :
CL> Hi, Klaus, thanks.
CL> You can simply use DBSight to create the index. It's in Lucene's
CL> standard format.
CL> And you ca
rg
Subject: Re: SIMPLE Lucene / MySQL Indexer
Hi, Klaus, thanks.
You can simply use DBSight to create the index. It's
in Lucene's standard
format.
And you can control index field type, analyzers, how
to select data from
database, number of java threads, etc, just by web UI.
No coding is ne
]
Sent: Wednesday, July 13, 2005 2:41 PM
To: java-user@lucene.apache.org
Subject: RE: SIMPLE Lucene / MySQL Indexer
hI
Apologies
Interesting this is not the Form to discuss about HOW
to Debugging with
Eclipse
So I suggest u to use the Help tab in Eclispe Ide.
Hint : First set the Break
o the community if
somebody is interested.
Bye,
Klaus
-Original Message-
From: Xing Li [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 13, 2005 2:38 PM
To: java-user@lucene.apache.org
Subject: RE: SIMPLE Lucene / MySQL Indexer
Kalus,
Just a few days ago I couldn't even remember how
go over 1 second? (I
> know, it depends on the hardware, but I'm just
> wondering)
>
> Thanks,
>
> Klaus
>
> -Original Message-
> From: Chris Lu [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 13, 2005 5:04 AM
> To: java-user@lucene.apache.org
-Original Message-
From: Klaus Hubert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 13, 2005 5:54 PM
To: java-user@lucene.apache.org
Subject: RE: SIMPLE Lucene / MySQL Indexer
Hi Xing,
I have the book and as I wrote in my initial message I
managed to create the
sample index as well managed to
step through my code. I
>will try today all day
>to get this fixed. I know, it shouldn't be too
>difficult.
>
>Thank you,
>
> Klaus
>
>-Original Message-
>From: Xing Li [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, July 13, 2005 2:15 PM
>To: java-u
I
will try today all day
to get this fixed. I know, it shouldn't be too
difficult.
Thank you,
Klaus
-Original Message-
From: Xing Li [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 13, 2005 2:15 PM
To: java-user@lucene.apache.org
Subject: RE: SIMPLE Lucene / MySQL Indexer
Don
>-Original Message-
>From: Ian Lea [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, July 13, 2005 10:19 AM
>To: java-user@lucene.apache.org
>Subject: Re: SIMPLE Lucene / MySQL Indexer
>
>Something like this?
>
>IndexWriter iw = whatever
>ResultSet rs = whatever
ache.org
Subject: Re: SIMPLE Lucene / MySQL Indexer
Something like this?
IndexWriter iw = whatever
ResultSet rs = whatever
while (rs.next()) {
Document ldoc = new Document();
ldoc.add(Field.Text("f1", rs.getString("f1"));
ldoc.add(Field.Unstored("f2",
oblem
arises. But I cannot go step by step as I was used to
when Programming
Visual Basic, PHP or Perl.
Thanks,
Klaus
-Original Message-
From: Nader Henein [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 13, 2005 10:42 AM
To: java-user@lucene.apache.org
Subject: Re: SIMPLE Lucene /
second? (I
know, it depends on the hardware, but I'm just
wondering)
Thanks,
Klaus
-Original Message-
From: Chris Lu [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 13, 2005 5:04 AM
To: java-user@lucene.apache.org
Subject: Re: SIMPLE Lucene / MySQL Indexer
Please allow me to intr
Also Hibernate, you can use Eclipse as an IDE, with the Hibernator
plugin to create objects cleanly from your MySQL database and then a few
lines will fetch an object which you could then be passed to Lucene for
indexing.
Nader Henein
Klaus Hubert wrote:
Hi,
I played with several search en
Something like this?
IndexWriter iw = whatever
ResultSet rs = whatever
while (rs.next()) {
Document ldoc = new Document();
ldoc.add(Field.Text("f1", rs.getString("f1"));
ldoc.add(Field.Unstored("f2", rs.getString("f2"));
ldoc.add(Field.Keyword("f3", rs.getString("f3"));
...
iw.a
Please allow me to intraduce DBSight.
It's based on Lucene, oriented for Any database search.
Most of the things are done by web UI. No coding is needed to create
your search.
check out this demo. http://search.dbsight.com
It's free to download and test. Free for developer edition, non-profit
Hi,
I played with several search engines to replace MySQL
FULLTEXT index and hope that Lucene is the best
solution for that.
I am reading Mannings book on Lucene in action and it
seems to be the most powerful search engine I found so
far.
I'm stuck at some problem and need help from you
experts.
16 matches
Mail list logo