Google's Core Java Library for Java and Android development.
I need a data structure that can efficiently buffer a specific number of elements, in FIFO order. As mentioned in …
java collections guava apache-commonsI know that the apply method of Function returns an object synchronously, and the apply of AsyncFunction runs asynchronously and …
java guava future concurrent.futuresI have a java project that I'm working on which was working until a few days ago. I'm not sure …
java eclipse guava google-finance-apiLet's say, I have P processes running some business logic on N physical machines. These processes call some web service …
guava distributed-computing apache-zookeeper rate-limiting apache-curatorI need a Map that could be iterated in the decreasing order of its values. Does any of the standard …
java collections map guava apache-commonsI have a collection of objects that I would like to partition into two collections, one of which passes a …
java collections guavaHow can I concat two linked lists in O(1) with Java via jdk1.6, google or apache commons collection or whatever? …
java collections linked-list apache-commons guavaWhile working on a memory benchmark of some high-throughput data structures, I realized I could use an ImmutableMap with only …
java performance hashmap benchmarking guava