How to implement typeahead? This depends on #21. There are the following solutions: - Use the prefix filter -> Bad idea! - Use the Completion Suggester: Better, but needs additional data fields to be stored (http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-suggesters-completion.html) - Use NGram as suggested here: http://jontai.me/blog/2013/02/adding-autocomplete-to-an-elasticsearch-search-application/
How to implement typeahead?
This depends on #21. There are the following solutions:
Better, but needs additional data fields to be stored
(http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-suggesters-completion.html)
http://jontai.me/blog/2013/02/adding-autocomplete-to-an-elasticsearch-search-application/