laravel-nestedset
laravel-nestedset copied to clipboard
Performance for frequent tree updates
shows good performance when tree is updated rarely.
How big is the penalty for updating the tree regularly? Is the penalty for appending/prepending less than the penalty for inserting at a specified position?
Is there an alternative structure thats more appropriate for frequent updates?
@Alig96 Every change in the tree triggers a lot of updates. If your app are writing frequently to the tree, this might not be the approach for you
@nivv any suggested alternatives ?