We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I found the class: LRUCache
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.
LinkedHashMap
get
The text was updated successfully, but these errors were encountered:
True! the thing is that the cache utilities were not migrated to the https://github.com/oblac/jodd-util.
I am under impression that there are better cache libraries out there... not sure if we should maintain this one anymore?
Sorry, something went wrong.
U means that cache will be removed next time?
It already is :) If you take a look in the https://github.com/oblac/jodd-util there is no cache anymore...
But I am open for discussion!
So, wdyt @looly ? Would such a small cache make sense?
Un.... not sense.
I mean if some user use the old version jodd-all will be touch off the bug,and its very difficut to find out it.
jodd-all
igr
No branches or pull requests
Current behavior
Hello, I found the class: LRUCache
use
LinkedHashMap
and use read lock for get, but theLinkedHashMap
get
method is not thread safe, the element will move to last of queue when get it.The text was updated successfully, but these errors were encountered: