Re: hi sample code

2007-02-14 Thread Saroja Kanta Maharana
Can you come to online now . On 2/14/07, ashwin kumar <[EMAIL PROTECTED]> wrote: hi thanks for your kindest reply. i just trying to index some text files using lucene-2.0.0 if you can share any sample programs for text file indexing in lucene-2.0.0 it will be allot helpfull for

RE: hi sample code

2007-02-14 Thread yeohwm
Hi, Hope this help. Regards, Wooi Meng -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.441 / Virus Database: 268.17.39/685 - Release Date: 2/13/2007 10:01 PM Disclaimer

Fwd: hi sample code

2007-02-13 Thread ashwin kumar
hi thanks for your kindest reply. i just trying to index some text files using lucene-2.0.0 if you can share any sample programs for text file indexing in lucene-2.0.0 it will be allot helpfull for me to understand lucene better. if u have any sample programs pls send it across to this mail is

Re: hi compile error

2007-02-13 Thread Saroja Kanta Maharana
Hi, I also new to lucene. As see your error, It may be the Lucene version problem. Which version r u using? means which which jar file ? Will you say me the Lucene Jar file name ?? Regards Saroj On 2/13/07, Doron Cohen <[EMAIL PROTECTED]> wrote: Hi ashwin, ashwin kumar

Re: hi compile error

2007-02-12 Thread Kapil Chhabra
Hi, replace /import org.apache.lucene.document.Field.*; / with /import org.apache.lucene.document.Field; / and you are done. Regards, kapilChhabra ashwin kumar wrote: hi all my name is ashwin i am trying to compile this program but its not getting compiled the error msg follows the code

Re: hi compile error

2007-02-12 Thread Doron Cohen
Hi ashwin, ashwin kumar wrote: > File fileDir = new File("C:\\files_to_index ");//fileDir is the Notice a redundant trailing space here. > document.add(Field.Text("content",textReader)); > D:\ASHWIN\testing\searching\TextFileIndexe

Re: hi compile error

2007-02-12 Thread Bhavin Pandya
Hi ashwin, I think there is error in your import statement... import org.apache.lucene.document.Field; Thanks. Bhavin pandya - Original Message - From: "ashwin kumar" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 13, 2007 11:04 AM Subject: hi compile error h

hi compile error

2007-02-12 Thread ashwin kumar
hi all my name is ashwin i am trying to compile this program but its not getting compiled the error msg follows the code which is below import java.io.File; import java.io.FileReader; import java.io.Reader; import java.util.Date; import org.apache.lucene.analysis.Analyzer; import

hi

2006-09-18 Thread Scott Guo

Re: Indexer large file and hi performance indexing

2006-09-07 Thread Erick Erickson
indexer)"? What about performances? -Message d'origine- De : Doron Cohen [mailto:[EMAIL PROTECTED] Envoyé : mercredi 6 septembre 2006 21:00 À : java-user@lucene.apache.org Objet : Re: Indexer large file and hi performance indexing "HODAC, Olivier" <[EMAIL PROTEC

RE: Indexer large file and hi performance indexing

2006-09-07 Thread HODAC, Olivier
origine- De : Doron Cohen [mailto:[EMAIL PROTECTED] Envoyé : mercredi 6 septembre 2006 21:00 À : java-user@lucene.apache.org Objet : Re: Indexer large file and hi performance indexing "HODAC, Olivier" <[EMAIL PROTECTED]> wrote on 06/09/2006 03:04:15: > > hello, > &g

Re: Indexer large file and hi performance indexing

2006-09-06 Thread Doron Cohen
"HODAC, Olivier" <[EMAIL PROTECTED]> wrote on 06/09/2006 03:04:15: > > hello, > > I design an application which bottleneck concerns the indexing > process. Objects indexation blocks the user's action. Furthermore, I > need to index a large maount of documents (3 per day) and save > them on the

Indexer large file and hi performance indexing

2006-09-06 Thread HODAC, Olivier
hello, I design an application which bottleneck concerns the indexing process. Objects indexation blocks the user's action. Furthermore, I need to index a large maount of documents (3 per day) and save them on the file system. The first developments have been initiate with lucene 1.4.3 and

RE: hi - testing

2006-06-21 Thread bruce
thanks to all who replied!!! -Original Message- From: Yonik Seeley [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 8:59 AM To: java-user@lucene.apache.org; [EMAIL PROTECTED] Subject: Re: hi - testing Normally the way I see if I'm correctly sending something to a list

Re: hi - testing

2006-06-21 Thread Yonik Seeley
Normally the way I see if I'm correctly sending something to a list is to send the first post I really want to send, and go check an archive of the list a little later. -Yonik On 6/21/06, bruce <[EMAIL PROTECTED]> wrote: hi.. can someone please respond to this so i can see if

hi - testing

2006-06-21 Thread bruce
hi.. can someone please respond to this so i can see if i'm getting through.. thanks -bruce - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Hi Alexey : How to search "TITLE" field only

2006-06-01 Thread Amaresh Kumar Yadav
Hi Alexey, I want to search string into "TITLE" field only then how should add this field to doc. Regards.. Amaresh -Original Message- From: Alexey Sorokin [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31, 2006 4:21 PM To: java-user@lucene.apache.org Subject: Re: how to cr

Re: Hi Experts

2006-03-29 Thread gekkokid
Hi, Lucene is a component that indexes data and allows you to search that indexed data, you need to be able to program in Java(various ports for other languages are available) or find a crawler you can adapt to download the required data of the internet (still requires basic knowledge of

RE: Hi Experts

2006-03-29 Thread Aditya Liviandi
Well you'll have to index the internet. Then when you've done that then you can try going against google. Oh, and you'll have to update that index every now and then to keep your index of the internet updated. Good luck. --- I²R Disclaimer ---

RE: Hi Experts

2006-03-29 Thread Babu, KameshNarayana \(GE, Research, consultant\)
PROTECTED] Sent: Wednesday, March 29, 2006 11:34 AM To: java-user@lucene.apache.org Subject: RE: Hi Experts The way lucene works is you need to have the index first. Only then you can search it. So if you want to search within a given URL, you need to somehow create the index of all the webpages within

RE: Hi Experts

2006-03-29 Thread Babu, KameshNarayana \(GE, Research, consultant\)
" -Original Message- From: Ranjan K. Baisak [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 29, 2006 12:32 PM To: java-user@lucene.apache.org Subject: RE: Hi Experts you wrote " I am using HTMLparser to parse all html pages and to get required information out of that. Let me t

RE: Hi Experts

2006-03-28 Thread Ranjan K. Baisak
> " > -Original Message- > From: Ranjan K. Baisak > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 29, 2006 12:06 PM > To: java-user@lucene.apache.org > Subject: Re: Hi Experts > > > For internet searching Nutch is the best tool. But > however as

RE: Hi Experts

2006-03-28 Thread Babu, KameshNarayana \(GE, Research, consultant\)
" -Original Message- From: Ranjan K. Baisak [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 29, 2006 12:06 PM To: java-user@lucene.apache.org Subject: Re: Hi Experts For internet searching Nutch is the best tool. But however as you dont want to use cygwin then you need to use Luce

Re: Hi Experts

2006-03-28 Thread Ranjan K. Baisak
have really got a good result to search my intranet. I am not sure whether this would meet your requirement. BTW have you tried google api. - R --- "Babu, KameshNarayana (GE, Research, consultant)" <[EMAIL PROTECTED]> wrote: > Hi Experts, > > Iam a new bie. Iam s

RE: Hi Experts

2006-03-28 Thread Aditya Liviandi
The way lucene works is you need to have the index first. Only then you can search it. So if you want to search within a given URL, you need to somehow create the index of all the webpages within that URL. If the webserver linked to that URL is also yours, then that would not be a big deal. But i

Hi Experts

2006-03-28 Thread Babu, KameshNarayana \(GE, Research, consultant\)
Hi Experts, Iam a new bie. Iam suppose to select a search engine for my project, which should search from the given URL and display the result. I should use the search engine in windows OS only. I should not use any other external tool like CGYWIN which is used in NUTCH. Any expet guidance