You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use ConcurrentReferenceHashMap for quite a few caches and JITWatch highlighted a few methods that are not that inline friendly. I'm not sure that it makes a big difference in practice, but we could refactor it a little.
The text was updated successfully, but these errors were encountered:
Update `ConcurrentReferenceHashMap` to make some methods more inline
friendly, and to manually inline a few others. These minor optimizations
don't make a great deal of difference for most applications, but seem
worthwhile since we use `ConcurrentReferenceHashMap` for many internal
caches.
Closesspring-projectsgh-22566
philwebb
added a commit
to philwebb/spring-framework
that referenced
this issue
Mar 14, 2019
Update `ConcurrentReferenceHashMap` to make some methods more inline
friendly, and to manually inline a few others. These minor optimizations
don't make a great deal of difference for most applications, but seem
worthwhile since we use `ConcurrentReferenceHashMap` for many internal
caches.
Closesspring-projectsgh-22566
We use
ConcurrentReferenceHashMap
for quite a few caches and JITWatch highlighted a few methods that are not that inline friendly. I'm not sure that it makes a big difference in practice, but we could refactor it a little.The text was updated successfully, but these errors were encountered: