That came after I spent a week increasing the list of things that need
escaped one at a time (waiting for errors along the way...)
Erik suggested I look at how the ruby client handles it... and I
haven't seen any problem since them.
Is there any problem with over escaping? I know it makes some things
look funny. Perhaps there is a regex that will do any non-letter except
ryan
On Aug 5, 2008, at 8:28 AM, Grant Ingersoll wrote:
ClientUtils.escapeQueryChars seems a bit aggressive to me in terms
of what it escapes. It references http://lucene.apache.org/java/docs/queryparsersyntax.html#Escaping
Special Characters, but doesn't explicitly escape them, instead
opting for the more general \W regex. Thus, I'm noticing that chars
that don't need to be escaped ( like / ) are being escaped.
Anyone recall why this is? I suppose the problem comes in when one
considers other query parsers, but maybe we should just mark this
one as explicitly for use w/ the Lucene QP?
-Grant