docs: record why the alias proxy cache needs identity keys - #1899
Open
velo wants to merge 1 commit into
Open
Conversation
Signed-off-by: Marvin Froeder <velo.br@gmail.com>
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.
Documentation only, no behaviour change.
While auditing identity dependencies I looked at
AliasFactory.proxyCacheandfound two things worth writing down next to the field.
The weak keys do not actually evict. The inner map is a
WeakHashMap<Expression<?>, ManagedObject>, but the cached proxy delegates to aPropertyAccessInvocationHandlerthat holds the same expression used as the key(
PropertyAccessInvocationHandler.java:51). Value strongly references key, soentries stay reachable — the classic self-referential
WeakHashMapcase, and ineffect this is an unbounded strong cache.
I deliberately did not change it.
createProxygenerates and loads a freshByteBuddy class on every call, so making the cache actually evict would trade
retained heap for unbounded class generation and metaspace growth. Both sides
need addressing together, which is a design call rather than a drive-by fix.
Flagging it in the code so the next person does not "fix" one half of it.
The keys have to be identity objects.
Referencecannot refer to a valueobject, so this cache is the thing that would stop
Expressionimplementationsfrom ever being declared value classes under JEP 401.
Also checked while I was in there: there is no
synchronizedanywhere in themain source tree across all library modules, and the remaining identity-keyed
maps are all safe —
TemplateFactorykeys onString,TemplatesandCollQuerySerializerkey on enum-backedOperator,MemFileSystemRegistrykeys on
String.🤖 Generated with Claude Code
https://claude.ai/code/session_01WnNBe1GoG2SxfU3FN7bcAA