Switch to state management using reference types #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "reference-state-management"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Steps
Purpose
The identifier system using value types only may have a slightly better performance (the difference really seems to be insignificant though), but results in strange behavior in certain situations:
With the reference type approach, the reference to the value will work as long as it exists and not break with the next update.
Approach
Remove
StateManager's function of storing state and store state in a decentralized way instead.