mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-20 04:09:04 +00:00
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