我正在尝试在dynamoDb中插入,但先删除重复的数据,然后再插入。我不使用dynamoDb的主分区键,因为这些项具有键逻辑。
然后...我“插入”
top_categories:{
type: terms,
field: category,
limit: 5,
facet:{
top_subcategories:{
type: terms,
field: subcategory,
limit: 20
}
}
}
我有2个问题:
1º--我没来,但是我没有在Bd中插入。
2º我丢失了所有寄存器,因为我先删除了。
3º我该怎么做:
布尔结果;
try {
repository.delete(list);
} catch (Exception e) {
e.printStackTrace();
}
try {
repository.save(list);
} catch (Exception e) {
e.printStackTrace();
}
对不起,我的英语。