asm_nerd1
asm_nerd1

Reputation: 455

Google Guava newConcurrentMap base implementation

How is the newConcurrentMap implemented in backend? I mean is it based on a hashmap (buckets) or there is some other backend implementation

Upvotes: 3

Views: 879

Answers (1)

Fabian Barney
Fabian Barney

Reputation: 14549

Currently it returns a java.util.concurrent.ConcurrentHashMap.

Upvotes: 6

Related Questions