Carsten Gehling
Carsten Gehling

Reputation: 1248

Using integers in text-query

I am indexing a table of companies, where a lot of them have names starting with an integer, e.g:

2partner 3m etc.

But when I try to do a simple solr-query like "2partner" (in Solr's webinterface), the integer "2" is removed by the query parser. Here's the debug:

<lst name="debug">
<str name="rawquerystring">2partner</str>
<str name="querystring">2partner</str>
<str name="parsedquery">text:partner</str>
<str name="parsedquery_toString">text:partner</str>

How do I avoid that?

Thanks in advance :-)

/Carsten

Upvotes: 1

Views: 107

Answers (1)

Pascal Dimassimo
Pascal Dimassimo

Reputation: 6928

You are probably using a WordDelimiterFilterFactory with splitOnNumerics activated. Check the analyzers of the field you are storing this data into.

Upvotes: 1

Related Questions