Hm, error tolerant query parser?  How do you want to handle queries with 
invalid syntax?

Here is one way:
try {
  QueryParser qp = new QueryParser(.....);
  Query q = qp.parse(....);
} catch (Throwable t) {
  // tolerate any exception
}

;)

Bad but quite tolerant.

Otis
 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Simpy -- http://www.simpy.com/  -  Tag  -  Search  -  Share

----- Original Message ----
From: Mohsen Saboorian <[EMAIL PROTECTED]>
To: java-user@lucene.apache.org
Sent: Wednesday, April 4, 2007 2:05:02 AM
Subject: Error Tolerant Query Parser


Sorry for dual posting. I've just inadvertently submit form before writing
the body :)

Is there any error tolerant query parser ever written for Lucene? What is
the way websites use for advanced searching with Lucene?
-- 
View this message in context: 
http://www.nabble.com/Error-Tolerant-tf3524057.html#a9831496
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to