Hi, I indexed my data and defined a defaultsearchfield named "text:" (<field name="text" type="text" indexed="true" stored="false" multiValued="true"/>).
I copied all my other field values into that field. Now my problem: Lets say I have 2 values indexed 1.value "ABCD" 2.value "ABCD3456" Now when I do a wildcard search over that two values the following happens: - query:"q=AB*" => All two values are returned "ABCD" and "ABCD3456" => wildcard is functioning! - query:"q=ABCD3*" => No results are returned! (expected: "ABCD3456") => wildcard does not function! Am I doing something wrong? Is there a way to use wildcards on alphanumeric values? (offtopic: How is for example google dealing with a problem like that, are they hiding the wildcards from the user) kind regards Sebastian -- View this message in context: http://www.nabble.com/Can%C2%B4t-use-wildcard-%22*%22-on-alphanumeric-values--tp24369209p24369209.html Sent from the Solr - User mailing list archive at Nabble.com.