In Memory Full Text Search with Kotlin with Kshitij Chauhan

Опубликовано: 12 Апрель 2025
на канале: Android Worldwide
738
33

This is a session on building an in-memory full-text-search library with Kotlin

In-Memory FTS is a technique to let users search through data that's not persisted to a database. It can be used to build powerful search experiences over ephemeral data, but it's not trivial to implement.

This session will cover how to build an in-memory full text search library in Kotlin using Coroutines and Kotlin Data Science libraries.

Topics:
Tokenisation and Stemming of text documents
Inverted indices for fast reverse-lookups
Building a document processing pipeline with Kotlin Coroutines to generate full-text search indices