Created
May 12, 2017 19:59
-
-
Save gilhooleyd/73f6083b053b030a440a6562d1ad2406 to your computer and use it in GitHub Desktop.
Bayou server logs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type BayouServer struct { | |
... | |
... | |
... | |
// Stores committed ops: lower timestamps closer to head | |
CommitLog []LogEntry | |
// Stores uncommitted operations | |
TentativeLog []LogEntry | |
// Stores undo operations for all tentative ops | |
UndoLog []LogEntry | |
// Operations that conflict and fail to merge are stored here | |
ErrorLog []LogEntry | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment