Does anyone have any suggestions when it comes to building an Autosuggestion / Autocomplete search on multiple indexes?
Update: I found this link that may be how I need to approach my solution.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use a
MultiReaderto read from several readers. Here’s an example to iterate all indexed terms in a field named “data”. You specify where you want to start the enumeration in the call to.Terms(...). You could specify another starting point to match what the user has entered so far, to provide autocompletion on a term level.