Re: problem restoring index

2004-12-08 Thread Satoshi Hasegawa
You cannot use a wild character as the first character of the search. http://jakarta.apache.org/lucene/docs/queryparsersyntax.html - Original Message - From: Santosh [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Wednesday, December 08, 2004 6:21 PM Subject: problem

Re: searchig with special characters

2004-12-08 Thread Satoshi Hasegawa
You cannot use a wild character as the first character of the search. http://jakarta.apache.org/lucene/docs/queryparsersyntax.html - Original Message - From: Santosh [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Wednesday, December 08, 2004 6:24 PM Subject:

Re: Is opening IndexReader multiple times safe?

2004-11-16 Thread Satoshi Hasegawa
termine exactly when the reader was closed. Note: the method throws an error if the index file doesn't exist that you are checking on. Luke - Original Message - From: "Satoshi Hasegawa" [EMAIL PROTECTED] To: "Lucene Users List&

Is opening IndexReader multiple times safe?

2004-11-15 Thread Satoshi Hasegawa
Hello, I need to handle IOExceptions that arise from index access (IndexReader#open, #delete, IndexWriter#optimize etc.), and I'm not sure if the IndexReader is open when the exception is thrown/caught. Specifically, my code is as follows. try {

Re: Query#rewrite Question

2004-11-11 Thread Satoshi Hasegawa
Thank you, Erik and Paul. I'm not sure what SpanQuery is, but anyway we've decided to freeze the version of Lucene we use. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Query#rewrite Question

2004-11-10 Thread Satoshi Hasegawa
Hello, Our program accepts input in the form of Lucene query syntax from the user, but we wish to perform additional tasks such as thesaurus expansion. So I want to manipulate the Query object that results from parsing. My question is, is the result of the Query#rewrite