What will be the concurrencyLevel if ConcurrentHashMap size increased?
Suppose initial capacity of ConcurrentHashMap is 16. and default concurrencyLevel will 16. If capacity increased by load factor after some time and now increased capacity is 28. What will be the concurrencyLevel in this case?
Gone through with these links as well Segmentation in ConcurrentHashMap and Modifying values in ConcurrentHashMap but still not clear.
Thanks in advance.