UserOperation: Action-based Transactions for real diffs #5960
Replies: 2 comments
-
|
Very cool. Should I think a singular description might satisfy the "append and update in a single transaction" case but might not fully satisfy the branch-and-merge case. This would purely be for analyzing the transaction log. To apply the operation it should be fine to just flatten the list of actions. |
Beta Was this translation helpful? Give feedback.
-
|
Love this design. The move from monolithic One gap I noticed: there's no tag-related action in the Would it make sense to add: as Also +1 to @westonpace's |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Create a new operation to improve transactions so that:
This is based on earlier proposal #3734. I've simplified the proposal, removing
CompositeOperationand setting the advanced use cases aside.Design
There will be two levels
User Operation
User operations are the user-facing ones. They will be the high-level operations that users recognize, such as
INSERT,CREATE INDEX, etc.Actions
Action is a granular change to the manifest. Traditional operations will be made up of multiple of these.
Details
Benefits
Beta Was this translation helpful? Give feedback.
All reactions