3

我正在尝试使用咖啡因创建一个简单的(非加载)缓存。

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>

任何建议将不胜感激。

4

1 回答 1

10

您似乎导入了 ElasticSearch 的 Cache 接口以分配给缓存构建器的结果。您展示的构建器语法是 Guava 的CacheBuilder. 因为许多用户会拥有 Guava 并且可能会迁移,所以调用构建器Caffeine以减少混淆。

您应该能够构建一个缓存,例如,

Cache<String, MyObject> countsCache = Caffeine.newBuilder().build();
于 2016-05-20T20:55:09.193 回答