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
<michael.aley...@sternwald.com> wrote:
>
> Hey everybody,
>
> i have a Solr field keyword field defined as:
>
> <fieldType name="text_keyword" class="solr.TextField">
>              <analyzer>
>                            <tokenizer class="solr.KeywordTokenizerFactory" />
>              </analyzer>
> </fieldType>
>
> <dynamicField name="*_KY" type="text_keyword"              indexed="true" 
> stored="true"             termVectors="false" multiValued="false" />
>
> 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<file://tbus/tbahn> and " bus bahn" but nothing matches. Does 
> anybody know what to do?
>
> Regards
> Michael

Reply via email to