Google's Core Java Library for Java and Android development.
I want to find something like ImmutableLinkedHashMap<> in Guava library. I need to use an immutable key-value data …
java guava immutability linkedhashmapMy java app has a cache, and I'd like to swap out the current cache implementation and replace it with …
java caching guavaAccording to these micro benchmarks it turns out that Caffeine is a way faster than Guava cache in both read …
caching guava caffeineIs there a more efficient way to create a string array from Guava's Splitter than the following? Lists.newArrayList(splitter.…
java string guavaI was wondering what are key differences between Guava vs Apache Commons with respect to equals and hashCode builders. equals: …
java guava apache-commonsI need to cache objects in Java using a proportion of whatever RAM is available. I'm aware that others have …
java caching guava soft-referencesI'm using ListenableFuture from Guava, and one nice thing about them is that one pass Executor to the Futures.addCallback …
java android guava executorserviceI'm looking into using a consistent hash algorithm in some java code I'm writing. The guava Hashing library has a …
java guava consistent-hashingWhen the enhanced for loop (foreach loop) was added to Java, it was made to work with a target of …
java guava foreach