Good morning all.
We have a system, which has 2 sets of IDs. 1 ID uniquely identifies a single record or Solr document, and one could identify multiple items.
for example:
document1, uniqueID = A1231000, ObjectID = A123
document2, uniqueID = A1231001, ObjectID = A123
the idea is that someone could look for all items with ObjectID A123 and get all records, but the unique ID needs to be Unique (in this case, the ObjectID + the ID in the DB).
Anyway, we need to be able to delete all records for an ObjectID quickly, and ideally, without hitting the DB for all the IDs.
Currently, looking though code, i can pass in a list of UniqueIDs to be deleted, which would not work easily, plus there could be lots of records for each ID. I could pass in a Query and delete, which would work, but i am looking for the option to send in a list of queries to delete...