{{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:

ImportError: cannot import name 'soft_unicode' from 'markupsafe'

Check the markupsafe version.  To fix the problem install 2.0.1 pip install markupsafe==2.0.1