Re[2]: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Sven Duzont
. 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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
] 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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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

Re: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Chris Lu
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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Karthik N S
-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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Xing Li
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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Xing Li
>-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

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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",

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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 /

RE: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Klaus Hubert
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

Re: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Nader Henein
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

Re: SIMPLE Lucene / MySQL Indexer

2005-07-13 Thread Ian Lea
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

Re: SIMPLE Lucene / MySQL Indexer

2005-07-12 Thread Chris Lu
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

SIMPLE Lucene / MySQL Indexer

2005-07-12 Thread Klaus Hubert
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.