> when searching for a string: "asdf5qwerty" solr will > tokenize it to: > "asdf", "5", "qwerty" and display documents matching either > string. > > How can i stop this behaviour and make it just search for > plain > "asdf5qwerty"?
What is the type of your field? If you have solr.WordDelimiterFilterFactory in your analysis chain, remove it. In admin/analysis.jsp you can see which tokenizer/tokenfilter is breaking "asdf5qwerty" into "asdf", "5", "qwerty".