Re: Keyword field with tabs in Solr 7.4

2018-12-12 Thread Erick Erickson
sending the tab as unicode: > IPTC_2_080_KY:"\u0009bus\u0009bahn" matched perfectly. > > Best, > Michael > > -Ursprüngliche Nachricht- > Von: Erick Erickson > Gesendet: Dienstag, 11. Dezember 2018 18:45 > An: solr-user > Betreff: Re: Keyword f

AW: Keyword field with tabs in Solr 7.4

2018-12-12 Thread Michael Aleythe, Sternwald
. Dezember 2018 18:45 An: solr-user Betreff: Re: Keyword field with tabs in Solr 7.4 You are probably in "url-encoding hell". Add &debug=query to your search and check the parsed query returned to see what Solr actually sees. Try url-encoding the backslash *%5C" maybe? Best,

Re: Keyword field with tabs in Solr 7.4

2018-12-11 Thread Erick Erickson
You are probably in "url-encoding hell". Add &debug=query to your search and check the parsed query returned to see what Solr actually sees. Try url-encoding the backslash *%5C" maybe? Best, Erick On Tue, Dec 11, 2018 at 1:40 AM Michael Aleythe, Sternwald wrote: > > Hey everybody, > > i have a So

Keyword field with tabs in Solr 7.4

2018-12-11 Thread Michael Aleythe, Sternwald
Hey everybody, i have a Solr field keyword field defined as: Some documents have tabs (\t) indexed in this field, e.g. IPTC_2_080_KY:"\tbus\tbahn" How can i query this content? I tried "\tbus\tbahn", \\tbus\\tbahn and " bus bahn" bu