Core Java

ConcurrentLinkedHashMap v 1.0.1 released

Hello all, we released version 1.0.1 of our concurrent LinkedHashMap implementation.

In the latest version several minor modifications have been made so as to improve performance when multiple threads iterate over the elements of the map.

The latest version also introduces pluggable eviction policies. Of course you can implement custom eviction policies and use them with out ConcurrentLinkedHashMap as well. Out of the box we provide seven popular eviction policy implementations :

  • FIFO (First In First Out) eviction policy
  • LIFO (Last In First Out) eviction policy
  • LFU (Least Frequently Used) eviction policy
  • LRU (Least Recently Used) eviction policy
  • MRU (Most Recently Used) eviction policy
  • Expiration (age and idle time) eviction policy
  • Random (random element) eviction policy
You can download the new version here
Best Regards
Justin
Related Articles :

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button