Re: WildCardQuery

2004-10-05 Thread Morus Walter
Robinson Raju writes: The way i have done is , if there is a wildcard , Use WildCardQuery , else other. Here searchFields is an array which contains the column names . search string is the value to be searched. if ((searchString.indexOf(IOOSConstants.ASTERISK) -1)

hibernate y el algoritmo para asignar scores a los hits

2004-10-05 Thread [EMAIL PROTECTED]
(first excuse me for my english) hi people.. we are programming a few tests battery to see how lucene creates the scores in a search into a very simple and controllable documents. but we don't understand why the results looks not ok for us.. i am going to try to explain, the details of the

hibernate and algorithm for asing score to hits

2004-10-05 Thread [EMAIL PROTECTED]
(first excuse me for my english) hi people.. we are programming a few tests battery to see how lucene creates the scores in a search into a very simple and controllable documents. but we don't understand why the results looks not ok for us.. i am going to try to explain, the details of the

Re: hibernate and algorithm for asing score to hits

2004-10-05 Thread Otis Gospodnetic
Hello, Lucene's API includes classes that let you explain hit scores (e.g. http://research.yahoo.com/demo/nutch/explain.xml?idx=6id=4752515query=web) Otis --- [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: (first excuse me for my english) hi people.. we are programming a few tests battery

Re: LUCENE and algorithm for asing score to hits

2004-10-05 Thread [EMAIL PROTECTED]
im sorry friends.. i put the title incorrectly for two times - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

XML Indexing

2004-10-05 Thread Sumathi
Can any one give me a demo for indexing XML files ? Mit freundlichen GrĂ¼ssen - with kind regards _ Sumathi P Junior Consultant QA GFT Technologies , India 95 , Bharathidasan Salai Cantonment , Trichy-620001 TamilNadu , India T

Re: XML Indexing

2004-10-05 Thread Simon mcIlwaine
Check this article out. http://www-106.ibm.com/developerworks/library/j-lucene/ Simon - Original Message - From: Sumathi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 2:02 PM Subject: XML Indexing Can any one give me a demo for indexing XML files ? Mit

Re: BooleanQuery - Too Many Clases on date range.

2004-10-05 Thread Erik Hatcher
On Oct 4, 2004, at 2:12 PM, Chris Fraschetti wrote: absoultely, limiting the user's query is no problem here. I've currently implemented the lucene javascript to catcha lot of user quries that could cause issues.. blank queries, ? or * at the beginning of query, etc etc... but I couldn't think of

WebLucene 0.5 released: with a SAX based indexing sample Re: XML Indexing

2004-10-05 Thread Che Dong
http://sourceforge.net/projects/weblucene/ Regards Che Dong http://www.chedong.com/tech/weblucene.html Sumathi wrote: Can any one give me a demo for indexing XML files ? Mit freundlichen GrĂ¼ssen - with kind regards _ Sumathi P Junior Consultant QA

Re: BooleanQuery - Too Many Clases on date range.

2004-10-05 Thread Che Dong
How about use inter based filter instead of datatime based filter. datetime can convert to unix timestamp for compare. Thanks Che Dong http://www.chedong.com/ Chris Fraschetti wrote: Surely some folks out there have used lucene on a large scale and have had to compensate for this somehow, any

leakage in RAMDirectory ?

2004-10-05 Thread Rupinder Singh Mazara
hi all following is some code that i use to index the contents of a table ( there are 18746 records in the table. ) using a database result set , i loop over all the records , creating a document object and indexing into ramDirectory and then onto the fileSystem when I open a IndexReader and

RE: leakage in RAMDirectory ?

2004-10-05 Thread Rupinder Singh Mazara
forgot to mention lucene 1.4.2 is the version I am currently using -Original Message- From: Rupinder Singh Mazara [mailto:[EMAIL PROTECTED] Sent: 05 October 2004 19:32 To: Lucene Users List Subject: leakage in RAMDirectory ? hi all following is some code that i use to index the

RE: ezmlm response

2004-10-05 Thread Patel, Viral
Does anyone know how can I iterate through entire index and display all of the records without typing anything in the query? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 3:25 PM To: Patel, Viral Subject: ezmlm response Hi! This is

Re: ezmlm response

2004-10-05 Thread Erik Hatcher
On Oct 5, 2004, at 4:29 PM, Patel, Viral wrote: Does anyone know how can I iterate through entire index and display all of the records without typing anything in the query? You can use the IndexReader API to navigate the index and walk through all of the documents. Erik