sqlite_crdt 0.0.5 copy "sqlite_crdt: ^0.0.5" to clipboard
sqlite_crdt: ^0.0.5 copied to clipboard

Dart implementation of Conflict-free Replicated Data Types (CRDTs) using Sqlite as storage

Dart implementation of Conflict-free Replicated Data Types (CRDTs) using Sqlite as storage.
This project is a continuation of the crdt package and may depend on it in the future.

sqlite_crdt is based on the learnings from Libra, StoryArk and tudo.
Check tudo for a real world implementation of this package.

⚠ This package is still under development and may not be stable. The API may break at any time.

Notes #

sqlite_crdt is not an ORM. The API is essentially that of a plain old SQL database with a few behavioural changes:

  • Every table gets 3 columns automatically added: is_deleted, hlc, and modified
  • Deleted records aren't actually removed but rather flagged in the is_deleted column
  • Features a reactive watch method to subscribe to database changes
  • Adds convenience methods getChangeset, watchChangeset and merge to simplify syncing with remote nodes
  • Transactions are blocking to avoid nested transaction errors

⚠ Because deleted records are only flagged as deleted, they may need to be sanitized in order to be compliant with GDPR and similar legislation.

Setup #

Awaiting async functions is extremely important and not doing so can result in all sorts of weird behaviour.
Please make sure you activate the unawaited_futures linter warning in analysis_options.yaml:

linter:
  rules:
    unawaited_futures: true

This package uses sqflite. There's a bit of extra setup necessary depending on where you intend to run your code:

Android & iOS #

sqlite_crdt uses recent Sqlite features that may not be available in every system's embedded libraries.

To get around this, import the sqlite3_flutter_libs package into your project:

sqlite3_flutter_libs: ^0.5.12

Desktop, Server #

On the desktop and server, Sqflite uses the system libraries so make sure those are installed.

On Debian, Raspbian, Ubuntu, etc:

sudo apt install libsqlite3 libsqlite3-dev

On Fedora:

sudo dnf install sqlite-devel

Otherwise check the instructions on sqflite_common_ffi.

Usage #

The sqlite_crdt API is intentionally kept simple with a few methods:

  • execute to run non-select SQL queries, e.g. inserts, updates, etc.
  • query to perform a one-time query
  • watch to receive query results whenever the database changes
  • getChangeset to generate a serializable changeset of the local database
  • watchChangeset a reactive alternative to get the changeset
  • merge to apply a remote changeset to the local database
  • begin- and commitTransaction a blocking transaction mechanism to avoid nested transaction errors

Check example.dart for more details.

Features and bugs #

Please file feature requests and bugs in the issue tracker.

4
likes
0
pub points
70%
popularity

Publisher

verified publishercachapa.net

Dart implementation of Conflict-free Replicated Data Types (CRDTs) using Sqlite as storage

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

sqflite_common, sqflite_common_ffi, sqlparser, uuid

More

Packages that depend on sqlite_crdt