A new release for your friendly neighbourhood FTS library.
Version 0.2.0 brings the ability to query Lucilla for autocompletion suggestions.
val index = useFts(someData)
search.onQuery { query ->
val suggestions = index.autocomplete(query)
showSuggestions(suggestions)
}
Build a custom pipeline that does not stem input documents to avoid unexpected suggestions.