可以通过密钥而不是Hazelcast中的值进行查询(使用Predicates)?

时间:2015-05-27 15:28:11

标签: java hazelcast

在Hazelcast中,是否可以根据键的属性而不是值来查询IMap?所有Hazelcast示例都显示了按值查询。例如,对于具有字符串键的员工的地图:

IMap<String, Employee> employees;

典型的搜索谓词然后根据员工属性(姓名,工资等)进行搜索。但是我的案例使用了更复杂的键,例如:

IMap<DataAttributes, DataValue> myData;

因此,如果DataAttributes具有以下字段:

 class DataAttributes {
     String theDescription;
     Date   theStartTime;
     public String getDescription() { return theDescription; }
     // etc....
 }

我想编写一个可以通过键查询的谓词,以返回一个合适的DataValue对象。这不起作用:

Predicate pred = Predicates.equal("description", "myDescription");
myData.keySet(pred);  // Throws IllegalArgumentException: "There is no suitable accessor for..."

我可以像this answer中建议的那样滚动自己,但如果可以的话,我宁愿使用开箱即用的解决方案。

如果我最终使用Criteria API或分布式SQL查询API,则无关紧要。任何有效的查询都会很棒。适用于嵌套属性的解决方案的加分点(即:DataAttributes theStartTime.getYear())。

1 个答案:

答案 0 :(得分:8)

可以使用PredicateBuilder(com.hazelcast.query.PredicateBuilder)。 PredicateBuilder范例允许您基于键进行查询,如下所示:

EntryObject eo = new PredicateBuilder().getEntryObject();
Predicate fredWithStartTimeThisYear = eo.key().get("Description").equal("Fred")
  .and(eo.key().get("theStartTime.Year").equal(2015));

请注意,您可以通过访问器方法(“getter”)或字段名称来引用类成员,如上面的示例代码所示。我在"Mastering Hazelcast"在线图书中找到了这些信息,可在hazelcast.org上找到(但您必须填写一份注册表才能访问它)。