本文介绍了Hector是否提供API来支持复合键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
现在,我必须通过将子键格式化在一起来手动生成复合键。这是丑陋,效率不高。我不知道Hector是否提供这样的一组API来处理复合键在一个更体面的方式。
Right now, I have to manually generate the composite key by formatting the subkeys together. It's ugly and not efficient. I wonder if Hector provides such set of APIs to handle composite keys in a more decent way.
推荐答案
是的。
您可以查看DynamicCompositeTest for示例:
You can look at DynamicCompositeTest for examples:
@Test
public void allTypesSerialize() {
DynamicComposite composite = new DynamicComposite();
UUID lexUUID = UUID.randomUUID();
com.eaio.uuid.UUID timeUUID = new com.eaio.uuid.UUID();
//add all forward comparators
composite.addComponent(0, "AsciiText", AsciiSerializer.get(), "AsciiType", ComponentEquality.EQUAL);
composite.addComponent(1, new byte[]{0, 1, 2, 3}, BytesArraySerializer.get(), "BytesType", ComponentEquality.EQUAL);
composite.addComponent(2, -1, IntegerSerializer.get(), "IntegerType", ComponentEquality.EQUAL);
composite.addComponent(3, lexUUID, UUIDSerializer.get(), "LexicalUUIDType", ComponentEquality.EQUAL);
composite.addComponent(4, -1l, LongSerializer.get(), "LongType", ComponentEquality.EQUAL);
composite.addComponent(5, timeUUID, TimeUUIDSerializer.get(), "TimeUUIDType", ComponentEquality.EQUAL);
composite.addComponent(6, "UTF8Text", StringSerializer.get(), "UTF8Type", ComponentEquality.EQUAL);
composite.addComponent(7, lexUUID, UUIDSerializer.get(), "UUIDType", ComponentEquality.EQUAL);
这篇关于Hector是否提供API来支持复合键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!