Does write coalescing apply to SQLite storage? I'm particularly worried about the atomicity describe
Does write coalescing apply to SQLite storage? I'm particularly worried about the atomicity described in the docs (and quoted below) for non-SQL storage.
If you invoke put() (or delete()) multiple times without performing any await in the meantime, the operations will automatically be combined and submitted atomically. In case of a machine failure, either all of the writes will have been stored to disk or none of the writes will have been stored to disk.



