## Current behavior Hello, I found the class: [LRUCache](https://github.com/oblac/jodd/blob/master/jodd-core/src/main/java/jodd/cache/LRUCache.java) use `LinkedHashMap` and use read lock for get, but the `LinkedHashMap` `get` method is not thread safe, the element will move to last of queue when get it. 