Displaying 3 results from an estimated 3 matches for "solr_escape_chars".
2016 Dec 19
3
fts-solr: Returning 400 on searches; unescaped braces
...PoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Indeed the braces are listed in fts-backend-solr.c as part of
solr_escape_chars, so don't know how the braces are making it through
unencoded.
--
Michael Welsh Duggan
(md5i at md5i.com)
2016 Nov 09
2
search body with wildcards
Hi,
A question. We are using fts_solr. When searching for content in BODY I
noticed that dovecot only supports full words. "BODY calibration"
returns results but "BODY calibra" does not. Nor "BODY calibra*".
Solr does support searching with wildcards so why is it that dovecot
does not?
regards,
--
Willem-Jan de Hoog
2017 Jan 16
0
fts-solr: Returning 400 on searches; unescaped braces
...at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
> at java.lang.Thread.run(Thread.java:745)
>
> Indeed the braces are listed in fts-backend-solr.c as part of
> solr_escape_chars, so don't know how the braces are making it through
> unencoded.
I have attached a patch which solves this problem. I initially tried
changing http_url_escape_param() to include braces, but this did not
solve the problem. I have to guess that the {!lucene+q.op=AND} bit does
not travel thr...