Byron Kiourtzoglou

About Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.

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 :
Share and enjoy!


© 2010-2012 Java Code Geeks. Licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
All trademarks and registered trademarks appearing on Java Code Geeks are the property of their respective owners.
Java is a trademark or registered trademark of Oracle Corporation in the United States and other countries.
Java Code Geeks is not connected to Oracle Corporation and is not sponsored by Oracle Corporation.