Finish EACL v8 upgrade and restore Explorer performance - #5
Open
theronic wants to merge 5 commits into
Open
Conversation
theronic
marked this pull request as ready for review
August 6, 2026 22:06
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
8b17ee0bd931bd970d0c4a6cfd83fc4d0b49a0d2from Restore EACL v8 enumeration performance eacl#104Root cause
The main v8 count regression rebuilt the merged permission traversal per count window. The later cache-only regression came from the hidden subproblem projection tier: each LRU eviction scanned the complete tier, so a full cache plus relationship appends produced quadratic work and blocked the browser event loop. Public cursor transport and the
:rebase?marker also leaked into completed page keys, causing false misses after unrelated UI transactions and subject switches.The EACL fix uses an exact bounded access log for eviction and keys pages by the authenticated internal boundary. Explorer supplies a larger but still bounded projection budget for its benchmark-scale in-memory dataset.
Validation
Depends on theronic/eacl#104.