Awesome, thank you.
Would be great to see anything about this difference in wiki.
For anyone else suffering from this, originally I started with:
fulltext(query.gsub(/(\$|&|\+|,|\/|:|;|=|\?|@)/) { "\\#{$1}" }) do
minimum_match(1)
end
But be careful with the "+" sign, since it could be used in
Just escape the special characters of the URL with backslash or put the
entire URL in quotes. The slash is particularly problematic since it
introduces a regular expression. Dismax has a less-sophisticated syntax and
automatically escapes more special characters.
-- Jack Krupansky
-Origin
On Fri, Jan 28, 2011 at 3:00 PM, Thumuluri, Sai
wrote:
> I recently upgraded to Solr 1.4.1 from Solr 1.3 and with the upgrade
> used edismax query parser. Here is my solrconfig.xml . When I search for
> "mw verification and payment information" - I get no results with
> defType set to edismax,
It