indexer.updateCategories(id, prepareProperties(categories));
}
public void deleteDocument(String id) {
BoostingIndexer indexer = engine.getIndexer();
indexer.del(id);
}
private Map<String, String> prepareProperties(JSONObject jo) {
Map<String, String> properties = Maps.newHashMap();
if(jo == null) {