I want search like this;
I try test like
map.put("path", "/content"));
map.put("fulltext","geo");
Query query = queryBuilder.createQuery(PredicateGroup.create(params), session);
SearchResult result= query.getResult();
for (Hit hit : result.getHits()) {
Map<String, String> excerpts = hit .getExcerpts();
}
but excerpts is null;
what should I do?