Mention CRDT projects on community page

This commit is contained in:
Simon Binder 2023-11-07 14:40:52 +01:00
parent ce554a02e5
commit 13d64a955a
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 11 additions and 1 deletions

View File

@ -11,6 +11,16 @@ Do you have a drift-related package you want to share? Awesome, please let me kn
[Twitter](https://twitter.com/dersimolus) or via email to oss <at>simonbinder<dot>eu.
{% endblock %}
## Conflict-free replicated datatypes
Conflict-free replicated datatypes (CRDTs) enable synchronization and replication of data
even when offline.
The [sql\_crdt](https://pub.dev/packages/sql_crdt) package by Daniel Cachapa uses the
`sqlparser` package from the drift project transforms SQL queries at runtime to implement
CRDTs for databases.
The [drift\_crdt](https://pub.dev/packages/drift_crdt) package by Janez Štupar provides a
wrapper around this for drift.
## Storage inspector
[Nicola Verbeeck](https://github.com/NicolaVerbeeck) wrote the `storage_inspector` packages, which

View File

@ -155,7 +155,7 @@ final class SqlTypes {
// thing.
result = DateTime.parse(rawValue);
} else {
// Result from complex date tmie transformation. Interpret as UTC,
// Result from complex date time transformation. Interpret as UTC,
// which is what sqlite3 does by default.
result = DateTime.parse('${rawValue}Z');
}