是否存在唯一约束,我们可以使用弹性搜索索引来防止重复插入?
我已经探索了很长时间但我无法找到它。
在我的情况下,重复文档被插入到具有不同_id的弹性搜索索引中。
例如 - 在下面的详细信息中,影片索引包含两个具有不同_id的记录。
//evaluates to true if rectOne and rectTwo are colliding
if(rectOneRight > rectTwoLeft && rectOneLeft < rectTwoRight && rectOneBottom > rectTwoTop && rectOneTop < rectTwoBottom){
请帮助任何人。