我正在执行一本基于藏匿搜查的书状。
书目中有一个称为作者名称的领域。 作者名称价值是姓名清单, com是分裂者,如“John Will,Robin Rod, James Timerberland”
@Field(index = org.hibernate.search.annotations.Index.UN_TOKENIZED,store=Store.YES)
@FieldBridge(impl=CollectionToCSVBridge.class)
private Set<String> authornames;
我每个名字都需要联合国。 ToKENIZED,从而使用户检索书以单一作者名称:John Will、Robin Rod或James Timerberland。
我用Luke来检查指数,在作者领域的价值被储存为“John Will、Robin Rod、James Timerberland”,但我无法通过询问“作者姓名:John Will”而得出结果。
Anybody can tell me how can I do it?