I'm using couchdb for storing the data of my app and couchdb-lucene (https://github.com/rnewson/couchdb-lucene) to implement search functionality for this data.
The search its ok, i can index couchdb documents into lucene a search for it. The problem its that now i want to implement autocomplete functionality for a better user experience, i look at the couchdb-lucene docs and i don't see nothing about how implement this.
my questions:
- Its possible to implement autocomplete only with couchdb-lucene?
- Its better to move to a most "complete" solution like solr or elasticsearch?