Solr searching text with percentage sign '%'

84 Views Asked by At

I wanna make query into solr by searching values like '75%' or '14%' and etc. Generated query is http://localhost:8983/solr/#/testEngine/query?q=250%25&q.op=OR&indent=true&start=0&rows=20
The problem is that returned result rows contains text 250% and 25/250 which is wrong and unexpected
I see that its generate and additional 25 number but in other side %25 corresponds to the % character. Chrome also turns % or %25. Can it means that or Solr chokes on just a % because it expects a URL escape sequence or how it should be modified to return only text which contains like 250%?

0

There are 0 best solutions below