Re: Highlighting on typing in search box

2019-11-24 Thread Paras Lehana
Hi rhys, You are actually looking for an autocomplete! I work for the Auto-Suggest (different names for the same thing) team at Indiamart. Although we have a long journey making our Auto-Suggest one of the fastest on the internet, I hope this summary will help you. You can always connect with me

Re: Highlighting on typing in search box

2019-11-21 Thread rhys J
Thank you both! I've got an autocomplete working on a basic format right now, and I'm working on implementing it to be smart about which core it searches. On Thu, Nov 21, 2019 at 11:43 AM Jörn Franke wrote: > It sounds like you look for a suggester. > > You can use the suggester of Solr. > > For

Re: Highlighting on typing in search box

2019-11-21 Thread Jörn Franke
It sounds like you look for a suggester. You can use the suggester of Solr. For the visualization part: Angular has a suggestion box that can ingest the results from Solr. > Am 21.11.2019 um 16:42 schrieb rhys J : > > Are there any recommended APIs or code examples of using Solr and then > hi

Re: Highlighting on typing in search box

2019-11-21 Thread David Hastings
you can modify the result in this SO question to fit your needs: https://stackoverflow.com/questions/16742610/retrieve-results-from-solr-using-jquery-calls On Thu, Nov 21, 2019 at 10:42 AM rhys J wrote: > Are there any recommended APIs or code examples of using Solr and then > highlighting resu

Highlighting on typing in search box

2019-11-21 Thread rhys J
Are there any recommended APIs or code examples of using Solr and then highlighting results below the search box? I'm trying to implement a search box that will search solr as the user types, if that makes sense? Thanks, Rhys