Re: Custom typeahead using Solr

2018-10-17 Thread Emir Arnautović
Hi Vineet, You can index your jobtitle field in two different ways: 1. standard tokenizer -> edge ngram 2. keyword tokenizer -> edge ngram The first field will be used to match word regardless of its position and the second one to prefer exact matches. HTH, Emir -- Monitoring - Log Management -

Custom typeahead using Solr

2018-10-17 Thread Vineet Mangla
Hi All, We have a requirement to create typeahead using Solr with following logic: Let's say my Solr core has a field called jobtitle with two values as "senior software engineer" and "software engineer" 1. Now, if I search for "*sen*", result should be "*sen*ior software engineer" 2.

Custom typeahead using Solr

2018-10-17 Thread Vineet Mangla
Hi All, We have a requirement to create typeahead using Solr with following logic: Let's say my Solr core has a field called jobtitle with two values as "senior software engineer" and "software engineer" 1. Now, if I search for "*sen*", result should be "*sen*ior software engineer" 2.