Skip to content

Version 0.2.0

Latest
Compare
Choose a tag to compare
@haroldadmin haroldadmin released this 19 Feb 15:20
· 1 commit to main since this release
dfb5f99

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.