hi :)

I've noticed that (with solr 1.2) the returned order (as well as the actual matched set) is affected by the number of matches you ask for:

  q=hanna&suggestionCount=1
    "suggestions":["Yanna"]

  q=hanna&suggestionCount=2
    "suggestions":["Manna",
      "Yanna"]

  q=hanna&suggestionCount=5
    "suggestions":["Manna",
      "Nanna",
      "Sanna",
      "Vanna",
      "Shanna"]

note how the "#1" result is completely missing from the "top 5"... or at least that's how I _used_ to think about the sets :)

unfortunately, extendedresults seems to be a 1.3-only option, so I can't see what's going on here. but I guess I'm asking if this is expected behavior.

--Geoff

Reply via email to