ArkData Glossary
Write Ahead Log (WAL)
WAL is a SQLite log mode, which is different from the traditional rollback journal mode. It is used to improve the concurrency performance and write efficiency.
For details, see SQLite Write-Ahead Logging.
FULL
FULL is one of the database synchronization write policies in SQLite. When data is modified each time, SQLite calls the xSync method of the underlying OS to ensure that all data is securely written to the disk. This ensures that the database is not damaged in the case of system breakdown or power failure.
For details, see SQLite synchronous.
你可能感兴趣的鸿蒙文章
openharmony 鸿蒙 app-data-persistence-overview
openharmony 鸿蒙 native-unified-data-management-framework-guidelines
openharmony 鸿蒙 native-vector-store-guidelines
openharmony 鸿蒙 data-sync-of-kv-store
openharmony 鸿蒙 data-sync-of-distributed-data-object
openharmony 鸿蒙 unified-data-channels
openharmony 鸿蒙 share-data-by-silent-access-sys
openharmony 鸿蒙 sync-app-data-across-devices-overview