I want to understand the difference between Delta Update , Updation and Deletion in Solr .
Delta Query : What happens if the unique id during a delta query is same as an existing document's unique id ? I want to know if delta query can be used to both update and insert new records . Is the expected behaviour in this scenario to delete the old document and re insert the updated document with same unique id ? ( My unique Id is a template formed with the primary key of the entity in DB) .
Update - If I update with no records but just mention the document ID in the syntax , will that be equivalent to a delete since , updation happens through a delete followed by a fresh insert at the same unique id ?