tree: 3a8fd6846775b0244d6af0b5baf1c13f16e841b5 [path history] [tgz]
  1. api_guide.md
  2. architecture.md
  3. architecture.png
  4. conflict_resolution.md
  5. conflict_resolution_offline.png
  6. conflict_resolution_two_devices.png
  7. data_in_storage.md
  8. data_organization.md
  9. examples.md
  10. field_data.md
  11. firebase.md
  12. life_of_a_put.md
  13. README.md
  14. style_guide.md
  15. testing.md
  16. user_guide.md
docs/ledger/README.md

Ledger

What is Ledger?

Ledger is a distributed storage system for Fuchsia.

Each application (or more precisely, each [component]) running on behalf of a particular user has a separate data store provided and managed by Ledger, and vended to a client application by Fuchsia framework through its component context.

The data store for the particular component/user combination is private - not accessible to other apps of the same user, and not accessible to other users of the same app.

Each data store is transparently synchronized across devices of its user through a cloud provider. Any data operations are made offline-first with no coordination with the cloud. If concurrent modifications result in a data conflict, the conflict is resolved using an app-configurable merge policy.

Each data store is organized into collections exposing a key-value store API called pages. Page API supports storing data of arbitrary size, atomic changes across multiple keys, snapshots and modification observers.

Documentation

Documentation for using Ledger:

Documentation for integrating with Ledger in client apps:

Documentation for setting up a remote Cloud sync provider:

Documentation for developing Ledger:

Design documentation: