mirror of https://github.com/AMT-Cheif/drift.git
Mention CRDT projects on community page
This commit is contained in:
parent
ce554a02e5
commit
13d64a955a
|
@ -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
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue