Hello all, I am trying to build an autocomplete solution for a website that I run. The current implementation of it is going to be used on who you want to send PM's too. I have it basically working up to this point, The UI is done and the suggester is working in returning possible solutions without any major problems. The problem I am currently running into is that the suggestions it is returning are not necessarily unique.
To solve this, I would like to return the user ID (a stored field) along with the suggestion. This would help in other areas but would ensure things are unique. Is it possible to make suggester to return these other fields or is it strictly returning text as I assume is the case. I know I am likely stretching what the suggester is suppose to do, so I am ok rolling back to a different plan using normal queries. But would prefer to be able to use suggester if possible. Thanks for the help, Cameron