Full-Text Search

Client-side full-text search (FTS) is available using the SQLite FTS5 extension.

This requires creating a separate FTS5 table(s) to index the data, and updating the table(s) using SQLite triggers.

Note that the availability of FTS is dependent on the underlying sqlite package used, as it is an extension that must first be enabled in the package.

Currently, FTS is supported in:

  1. powersync.dart (PowerSync Flutter SDK)

    1. Relies on the sqlite_async package for migrations

  2. powersync-sdk-web (JS Web SDK)

    1. Requires version 0.5.0 or greater of the SDK (incl. version 0.2.0 of the wa-sqlite package)

  3. SQLite recursive triggers are supported in the React Native SDK, and it should be possible to implement FTS with some additional config. This issue could be a good starting point.

Note: FTS support for Kotlin and Swift is planned. Let us know if you require this for your project.

Example Implementations

FTS is implemented in the following demo apps:

We explain these implementations in more detail below. Example code is shown mainly in Dart, but references to the React equivalents are included where relevant, so you should be able to cross-reference.

Walkthrough: Full-text search in the To-Do List Demo App

Setup

FTS tables are created when instantiating the client-side PowerSync database (DB).

This occurs in powersync.dart (Flutter implementation) and SystemProvider.tsx (Web implementation).

Dart example:

// powersync.dart

Future<void> openDatabase() async {
...
    await configureFts(db);
}

Note: The Web implementation does not use migrations. It creates the FTS tables separately in utils/fts_setup.ts.

TypeScript example:

// SystemProvider.tsx

SystemProvider = ({ children }: { children: React.ReactNode }) => {
...
    React.useEffect(() => {
    ...
        configureFts();
    }
}

First, we need to set up the FTS tables to match the lists and todos tables already created in this demo app. Don't worry if you already have data in the tables, as it will be copied into the new FTS tables.

The migrations are run in migrations/fts_setup.dart in the Flutter implementation. Here we use the sqlite_async Dart package to generate the migrations.

The FTS tables are created in utils/fts_setup.ts in the Web implementation.

Dart example:

// migrations/fts_setup.dart

/// This is where you can add more migrations to generate FTS tables
/// that correspond to the tables in your schema and populate them
/// with the data you would like to search on
Future<void> configureFts(PowerSyncDatabase db) async {
  migrations
    ..add(createFtsMigration(
        migrationVersion: 1,
        tableName: 'lists',
        columns: ['name'],
        tokenizationMethod: 'porter unicode61'))
    ..add(createFtsMigration(
      migrationVersion: 2,
      tableName: 'todos',
      columns: ['description', 'list_id'],
    ));
  await migrations.migrate(db);
}

The createFtsMigration function is key and corresponds to the below (Dart example):

// migrations/fts_setup.dart

/// Create a Full Text Search table for the given table and columns
/// with an option to use a different tokenizer otherwise it defaults
/// to unicode61. It also creates the triggers that keep the FTS table
/// and the PowerSync table in sync.
SqliteMigration createFtsMigration(
    {required int migrationVersion,
    required String tableName,
    required List<String> columns,
    String tokenizationMethod = 'unicode61'}) {
  String internalName =
      schema.tables.firstWhere((table) => table.name == tableName).internalName;
  String stringColumns = columns.join(', ');

  return SqliteMigration(migrationVersion, (tx) async {
    // Add FTS table
    await tx.execute('''
      CREATE VIRTUAL TABLE IF NOT EXISTS fts_$tableName
      USING fts5(id UNINDEXED, $stringColumns, tokenize='$tokenizationMethod');
    ''');
    // Copy over records already in table
    await tx.execute('''
      INSERT INTO fts_$tableName(rowid, id, $stringColumns)
      SELECT rowid, id, ${generateJsonExtracts(ExtractType.columnOnly, 'data', columns)} 
      FROM $internalName;
    ''');
    // Add INSERT, UPDATE and DELETE and triggers to keep fts table in sync with table
    await tx.execute('''
      CREATE TRIGGER IF NOT EXISTS fts_insert_trigger_$tableName AFTER INSERT 
      ON $internalName
      BEGIN
        INSERT INTO fts_$tableName(rowid, id, $stringColumns)
        VALUES (
          NEW.rowid,
          NEW.id,
          ${generateJsonExtracts(ExtractType.columnOnly, 'NEW.data', columns)}
        );
      END;
    ''');
    await tx.execute('''
      CREATE TRIGGER IF NOT EXISTS fts_update_trigger_$tableName AFTER UPDATE 
      ON $internalName BEGIN
        UPDATE fts_$tableName
        SET ${generateJsonExtracts(ExtractType.columnInOperation, 'NEW.data', columns)}
        WHERE rowid = NEW.rowid;
      END;
    ''');
    await tx.execute('''
      CREATE TRIGGER IF NOT EXISTS fts_delete_trigger_$tableName AFTER DELETE 
      ON $internalName BEGIN
        DELETE FROM fts_$tableName WHERE rowid = OLD.rowid;
      END;
    ''');
  });
}

After this is run, you should have the following tables and triggers in your SQLite DB:

FTS Search Delegate

To show off this new functionality, we have incorporated FTS into the search button at the top of the screen in the To-Do List demo app:

Clicking on the search icon will open a search bar which will allow you to search for lists or todos that you have generated.

It uses a custom search delegate widget found in widgets/fts_search_delegate.dart (Flutter) and widgets/SearchBarWidget.tsx (Web) to display the search results.

FTS Helper

We added a helper in lib/fts_helpers.dart (Flutter) and utils/fts_helpers.ts (Web) that allows you to add additional search functionality which can be found in the SQLite FTS5 extension documentation.

Dart example:

// lib/fts_helpers.dart

String _createSearchTermWithOptions(String searchTerm) {
  // adding * to the end of the search term will match any word that starts with the search term
  // e.g. searching bl will match blue, black, etc.
  // consult FTS5 Full-text Query Syntax documentation for more options
  String searchTermWithOptions = '$searchTerm*';
  return searchTermWithOptions;
}

/// Search the FTS table for the given searchTerm and return results ordered by the
/// rank of their relevance
Future<List> search(String searchTerm, String tableName) async {
  String searchTermWithOptions = _createSearchTermWithOptions(searchTerm);
  return await db.execute(
      'SELECT * FROM fts_$tableName WHERE fts_$tableName MATCH ? ORDER BY rank',
      [searchTermWithOptions]);
}

Last updated