Skip to content

Tag: guava

Correct usage for using loading cache with a ?

I have a cache of String, Boolean.: My usage pattern is: I am trying to change this so that it uses the alternative get method that takes a loader function get(K key, Callable<? extends V> loader), to avoid the possibility that two threads both call myCache.get(“some-key”) == null and both e…

Incompatible library version selenium / guava

My app has a hard dependency on com.google.guava:guava:23.3 or superior But I am also using org.seleniumhq.selenium:selenium-java:3.0.1 which is incompatible with guava versions > 22.0 as discussed here: https://github.com/SeleniumHQ/selenium/issues/4381 I am pretty new to Java, what is the best course of …