我正在尝试使用咖啡因创建一个简单的(非加载)缓存。
Cache<String, MyObject> countsCache =
CacheBuilder.newBuilder().build();
这无法编译,并报告错误:
Error:(42, 31) java: incompatible types:
no instance(s) of type variable(s) K1,V1 exist so that org.elasticsearch.common.cache.Cache<K1,V1> conforms to com.github.benmanes.caffeine.cache.Cache<java.lang.String,com.foo.bar.MyObject>
任何建议将不胜感激。