Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documentation: clarify indexedLength & linearized view #188

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ As new causal information comes in, existing nodes may be reordered. Any changes

### Indexed Length

The linearizing algorithm is able to define a point at which the ordering of the graph below will never change.
The linearizing algorithm is able to define a point at which the ordering of the graph below will never change. This point advances continually, so long as a majority set of indexers are writing messages.

### Views

An indexed view may be created on top of an Autobase. This view can be updated to reflect the messages of within the base.
A linearized view may be created on top of an Autobase. This view can be updated to reflect the messages of within the base.

Autobase accepts an `open` function for creating views and an `apply` function that can be used to update a view.

Expand Down
Loading