mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
831a95154e
This commit improves the performance of the `ConcurrentLruCache` and applies a consistent style to the code: * separating read/write locks into different variables does not help performance, so this change is reverted * apply a consistent style for read/write locks and try/cactch calls * the reordering of recently used keys is only done when the cache is full Fixes gh-24671