Noureddine
08/06/2021, 2:10 PMMayank
Noureddine
08/06/2021, 3:35 PMKen Krugler
08/06/2021, 3:49 PMAssuming every record has a unique id, then I can think of a hack (similar to how Lucene handles deletes) where you add ainteger field, and group by the unique id, includedeleted
in the result, and the client ignores any results with that value > 0. So then you can add a record with the same unique id andmax(deleted)
, and it gets ignored. Yes, it’s a horrible hack 🙂deleted = 1
Noureddine
08/08/2021, 1:39 PM