dudes dudes wrote:
Hi,
I'm trying to couple spell-checking mechanism with faceting in one url statement.. I can get the spell check right, but the facet doesn't work when it's combined
with spell-checker...
http://localhost:8080/solr/spellCheckCompRH?q=smath&spellcheck.q=smath&spellcheck=true&spellcheck.build=true&select?q=smath&rows=0&facet=true&facet.limit=1&facet.field=firstname
it corrects smath to Smith, but doesn't facet it.
I was able to get faceting working without issue. it seems to me your
query string is off - note the 'select?q=smath' in the middle of your
query. I'd try again with that part removed.
also note you only need to spellcheck.build=true once, not on each request.
--Geoff