Erik Hatcher wrote:
Solr out of the box, built in example data:
http://localhost:8983/solr/select?q.alt=cat:electronics&defType=dismax&bq={!dismax%20qf=name}ipod&fl=*,score&debugQuery=true
Gives me this response:
HTTP ERROR: 400
org.apache.lucene.queryParser.ParseException: Infinite Recursion
detected parsing query 'ipod'
Am I using this incorrectly with the bq parameter {! funkiness?
Or... ??
Erik
Bug maybe? Unless that syntax is not supposed to be supported? The
problem is that it keeps seeing the boosted query, and then it goes,
okay, make a subparser for ipod, and it does, but it still sees the same
boosted query from the params, so it goes, okay another parser to deal
with the subquery ipod, so it makes a new one and calls parse, but then
it still sees the same boosted query from the params and so makes a
subparser to handle the ipod part, and --- ...