Start by tokenizing author/title fields and adding them as suggestions. Eg: we should get a match on "Bhairab Aryal" when querying for just "Aryal" (under current implementation, queries have to start with "Bhairab").
This can be later extended to support things like synonyms as a suggestion.
To improve auto-complete queries, we can add suggestions when indexing documents.
https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-completion.html#indexing
Start by tokenizing author/title fields and adding them as suggestions. Eg: we should get a match on "Bhairab Aryal" when querying for just "Aryal" (under current implementation, queries have to start with "Bhairab").
This can be later extended to support things like synonyms as a suggestion.