{{theTime}}

Search This Blog

Total Pageviews

How to synchronize TreeMap?

TreeMap implementation is not synchronized.   If multiple threads access TreeMap and atleast one thread updates the TreeMap, it must be synchronized externally.  If no external synchronization, use 

 SortedMap m = Collections.synchronizedSortedMap(new TreeMap(...));

No comments:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...