Hi I have a very specific need in my company for the system's search engine, and I can't seem to find a solution.
We have a SOLR index of items, all of them have the same fields, with one of the fields being "Type", (And ofcourse, "Title", "Text", and so on).
What I need is: I get an Item Type and a Query String, and I need to return a list of search suggestion with each also saying how meny items of the correct type will that suggested string return.
Something like, if the original string is "goo" I'll get
Goo 10 Google 52 Goolag 2
and so on.
now, How do I do it? I don't want to re-query SOLR for each different suggestion, but if there is no other way, I just might.
Thanks in advance